Class: PluginManagerCliUpdate

Inherits:
Minitest::Test
  • Object
show all
Includes:
CorePluginFunctionalHelper, PluginManagerHelpers
Defined in:
lib/plugins/inspec-plugin-manager-cli/test/functional/update_test.rb

Constant Summary

Constants included from CorePluginFunctionalHelper

CorePluginFunctionalHelper::TRAIN_CONNECTION

Instance Method Summary collapse

Methods included from PluginManagerHelpers

#clear_empty_config_dir, #copy_in_core_config_dir, #copy_in_project_config_dir, #parse_plugin_list_lines, #teardown

Methods included from CorePluginFunctionalHelper

#__find_plugin_path_from_caller, #__make_empty_plugin_file_data_structure, #__make_plugin_file_data_structure_with_path, #run_inspec_process, #run_inspec_process_with_this_plugin

Instance Method Details

#test_fail_update_from_nonexistant_gemObject



54
55
56
57
58
59
60
61
62
63
# File 'lib/plugins/inspec-plugin-manager-cli/test/functional/update_test.rb', line 54

def test_fail_update_from_nonexistant_gem
  update_result = run_inspec_process_with_this_plugin("plugin update inspec-test-fixture-nonesuch")

  skip_windows!
  assert_match(/No such plugin installed:.+ - update failed/, update_result.stdout)

  assert_empty update_result.stderr

  assert_exit_code 1, update_result
end

#test_fail_update_pathObject



65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/plugins/inspec-plugin-manager-cli/test/functional/update_test.rb', line 65

def test_fail_update_path
  pre_block = Proc.new do |plugin_statefile_data, tmp_dir|
    plugin_statefile_data.clear # Signal not to write a file, we'll provide one.
    copy_in_core_config_dir("meaning_by_path", tmp_dir)
  end

  update_result = run_inspec_process_with_this_plugin("plugin update inspec-meaning-of-life", pre_run: pre_block)

  refusal_message = update_result.stdout.split("\n").grep(/refusing/).last
  skip_windows!
  refute_nil refusal_message, "Should find a failure message at the end"
  assert_includes refusal_message, "inspec-meaning-of-life"
  assert_includes refusal_message, "inspec plugin uninstall"
  assert_includes refusal_message, "Cannot update path-based install"

  assert_empty update_result.stderr

  assert_exit_code 2, update_result
end

#test_refuse_update_when_already_currentObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/plugins/inspec-plugin-manager-cli/test/functional/update_test.rb', line 34

def test_refuse_update_when_already_current
  pre_block = Proc.new do |plugin_statefile_data, tmp_dir|
    plugin_statefile_data.clear # Signal not to write a file, we'll provide one.
    copy_in_core_config_dir("test-fixture-2-float", tmp_dir)
  end

  update_result = run_inspec_process_with_this_plugin("plugin update inspec-test-fixture", pre_run: pre_block)

  refusal_message = update_result.stdout.split("\n").grep(/refusing/).last
  skip_windows!
  refute_nil refusal_message, "Should find a failure message at the end"
  assert_includes refusal_message, "inspec-test-fixture"
  assert_includes refusal_message, "0.2.0"
  assert_includes refusal_message, "Already installed at latest version"

  assert_empty update_result.stderr

  assert_exit_code 2, update_result
end

#test_when_a_plugin_can_be_updatedObject



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/plugins/inspec-plugin-manager-cli/test/functional/update_test.rb', line 7

def test_when_a_plugin_can_be_updated
  skip "this test requires bundler to pass" unless defined? ::Bundler

  pre_block = Proc.new do |plugin_statefile_data, tmp_dir|
    plugin_statefile_data.clear # Signal not to write a file, we'll provide one.
    copy_in_core_config_dir("test-fixture-1-float", tmp_dir)
  end

  update_result = run_inspec_process_with_this_plugin("plugin update inspec-test-fixture", pre_run: pre_block, post_run: list_after_run)

  success_message = update_result.stdout.split("\n").grep(/updated/).last
  skip_windows!
  refute_nil success_message, "Should find a success message at the end"
  assert_includes success_message, "inspec-test-fixture"
  assert_includes success_message, "0.1.0"
  assert_includes success_message, "0.2.0"
  assert_includes success_message, "updated from rubygems.org"

  itf_plugin = update_result.payload.list_result.detect { |p| p[:name] == "inspec-test-fixture" }
  refute_nil itf_plugin, "plugin name should now appear in the output of inspec list"
  assert_equal "gem (user)", itf_plugin[:type]
  assert_equal "0.2.0", itf_plugin[:version]

  assert_empty update_result.stderr
  assert_exit_code 0, update_result
end