htty 1.5.4 → 1.5.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +12 -9
- data/.rspec +2 -1
- data/.travis.yml +11 -8
- data/.yardopts +1 -1
- data/Gemfile +22 -10
- data/Guardfile +31 -13
- data/History.markdown +6 -0
- data/README.markdown +29 -13
- data/Rakefile +2 -64
- data/bin/console +10 -0
- data/bin/setup +8 -0
- data/exe/htty +5 -0
- data/htty.gemspec +27 -29
- data/lib/htty.rb +29 -4
- data/lib/htty/cli.rb +9 -16
- data/lib/htty/cli/body_open_command.rb +2 -7
- data/lib/htty/cli/command.rb +10 -18
- data/lib/htty/cli/commands.rb +76 -11
- data/lib/htty/cli/commands/address.rb +1 -14
- data/lib/htty/cli/commands/body_clear.rb +1 -8
- data/lib/htty/cli/commands/body_edit.rb +1 -11
- data/lib/htty/cli/commands/body_request.rb +1 -12
- data/lib/htty/cli/commands/body_request_open.rb +1 -10
- data/lib/htty/cli/commands/body_response.rb +1 -12
- data/lib/htty/cli/commands/body_response_open.rb +1 -11
- data/lib/htty/cli/commands/body_set.rb +1 -10
- data/lib/htty/cli/commands/body_unset.rb +1 -9
- data/lib/htty/cli/commands/cd.rb +1 -8
- data/lib/htty/cli/commands/cookie_add.rb +1 -8
- data/lib/htty/cli/commands/cookie_remove.rb +1 -8
- data/lib/htty/cli/commands/cookies.rb +1 -15
- data/lib/htty/cli/commands/cookies_add.rb +1 -11
- data/lib/htty/cli/commands/cookies_clear.rb +1 -8
- data/lib/htty/cli/commands/cookies_remove.rb +1 -11
- data/lib/htty/cli/commands/cookies_remove_all.rb +1 -11
- data/lib/htty/cli/commands/cookies_use.rb +1 -14
- data/lib/htty/cli/commands/delete.rb +1 -8
- data/lib/htty/cli/commands/exit.rb +1 -8
- data/lib/htty/cli/commands/follow.rb +1 -10
- data/lib/htty/cli/commands/form.rb +1 -7
- data/lib/htty/cli/commands/form_add.rb +1 -7
- data/lib/htty/cli/commands/form_clear.rb +1 -8
- data/lib/htty/cli/commands/form_remove.rb +1 -7
- data/lib/htty/cli/commands/form_remove_all.rb +1 -7
- data/lib/htty/cli/commands/fragment_clear.rb +1 -8
- data/lib/htty/cli/commands/fragment_set.rb +1 -10
- data/lib/htty/cli/commands/fragment_unset.rb +1 -9
- data/lib/htty/cli/commands/get.rb +1 -8
- data/lib/htty/cli/commands/header_set.rb +1 -8
- data/lib/htty/cli/commands/header_unset.rb +1 -8
- data/lib/htty/cli/commands/headers_clear.rb +1 -8
- data/lib/htty/cli/commands/headers_request.rb +1 -15
- data/lib/htty/cli/commands/headers_response.rb +1 -15
- data/lib/htty/cli/commands/headers_set.rb +1 -10
- data/lib/htty/cli/commands/headers_unset.rb +1 -10
- data/lib/htty/cli/commands/headers_unset_all.rb +1 -10
- data/lib/htty/cli/commands/help.rb +4 -12
- data/lib/htty/cli/commands/history.rb +1 -10
- data/lib/htty/cli/commands/history_verbose.rb +1 -12
- data/lib/htty/cli/commands/host_set.rb +1 -8
- data/lib/htty/cli/commands/http_delete.rb +1 -12
- data/lib/htty/cli/commands/http_get.rb +1 -13
- data/lib/htty/cli/commands/http_head.rb +1 -9
- data/lib/htty/cli/commands/http_options.rb +1 -9
- data/lib/htty/cli/commands/http_patch.rb +1 -13
- data/lib/htty/cli/commands/http_post.rb +1 -13
- data/lib/htty/cli/commands/http_put.rb +1 -12
- data/lib/htty/cli/commands/http_trace.rb +1 -9
- data/lib/htty/cli/commands/patch.rb +1 -8
- data/lib/htty/cli/commands/path_set.rb +11 -11
- data/lib/htty/cli/commands/port_set.rb +1 -9
- data/lib/htty/cli/commands/post.rb +1 -8
- data/lib/htty/cli/commands/put.rb +1 -8
- data/lib/htty/cli/commands/query_add.rb +1 -13
- data/lib/htty/cli/commands/query_clear.rb +1 -8
- data/lib/htty/cli/commands/query_remove.rb +1 -13
- data/lib/htty/cli/commands/query_set.rb +1 -13
- data/lib/htty/cli/commands/query_unset.rb +1 -13
- data/lib/htty/cli/commands/query_unset_all.rb +1 -10
- data/lib/htty/cli/commands/quit.rb +1 -7
- data/lib/htty/cli/commands/reuse.rb +5 -12
- data/lib/htty/cli/commands/scheme_set.rb +1 -9
- data/lib/htty/cli/commands/ssl_verification.rb +1 -11
- data/lib/htty/cli/commands/ssl_verification_off.rb +1 -10
- data/lib/htty/cli/commands/ssl_verification_on.rb +1 -10
- data/lib/htty/cli/commands/status.rb +1 -11
- data/lib/htty/cli/commands/undo.rb +1 -7
- data/lib/htty/cli/commands/userinfo_clear.rb +1 -8
- data/lib/htty/cli/commands/userinfo_set.rb +1 -11
- data/lib/htty/cli/commands/userinfo_unset.rb +1 -9
- data/lib/htty/cli/display.rb +4 -6
- data/lib/htty/cli/http_method_command.rb +1 -10
- data/lib/htty/cli/input_device.rb +1 -0
- data/lib/htty/cli/url_escaping.rb +1 -6
- data/lib/htty/cookies_util.rb +3 -3
- data/lib/htty/headers.rb +3 -4
- data/lib/htty/http_patch.rb +20 -23
- data/lib/htty/no_header_error.rb +1 -1
- data/lib/htty/no_location_header_error.rb +1 -3
- data/lib/htty/no_response_error.rb +1 -1
- data/lib/htty/no_set_cookie_header_error.rb +1 -3
- data/lib/htty/payload.rb +1 -5
- data/lib/htty/platform.rb +1 -1
- data/lib/htty/preferences.rb +1 -1
- data/lib/htty/request.rb +3 -13
- data/lib/htty/requests_util.rb +1 -5
- data/lib/htty/response.rb +1 -4
- data/lib/htty/session.rb +1 -3
- data/lib/htty/tempfile_preserving_extname.rb +1 -2
- data/lib/htty/uri.rb +1 -2
- data/lib/htty/version.rb +1 -1
- data/lib/tasks.rb +3 -0
- data/lib/tasks/build_doc.rake +8 -0
- data/lib/tasks/lib_each.rake +25 -0
- data/lib/tasks/spec.rake +68 -0
- data/lib/tasks/spec_each.rake +19 -0
- metadata +48 -209
- data/bin/htty +0 -5
- data/spec/integration/htty/cli/commands/query_add_spec.rb +0 -57
- data/spec/integration/htty/cli/commands/query_remove_spec.rb +0 -55
- data/spec/integration/htty/cli/commands/query_set_spec.rb +0 -78
- data/spec/integration/htty/cli/commands/query_unset_spec.rb +0 -43
- data/spec/spec_helper.rb +0 -76
- data/spec/unit/htty/cli/commands/address_spec.rb +0 -103
- data/spec/unit/htty/cli/commands/body_clear_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/body_edit_spec.rb +0 -18
- data/spec/unit/htty/cli/commands/body_request_spec.rb +0 -67
- data/spec/unit/htty/cli/commands/body_response_spec.rb +0 -72
- data/spec/unit/htty/cli/commands/body_set_spec.rb +0 -71
- data/spec/unit/htty/cli/commands/body_unset_spec.rb +0 -69
- data/spec/unit/htty/cli/commands/cd_spec.rb +0 -57
- data/spec/unit/htty/cli/commands/cookie_add_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/cookie_remove_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/cookies_add_spec.rb +0 -78
- data/spec/unit/htty/cli/commands/cookies_clear_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/cookies_remove_all_spec.rb +0 -73
- data/spec/unit/htty/cli/commands/cookies_remove_spec.rb +0 -69
- data/spec/unit/htty/cli/commands/cookies_spec.rb +0 -76
- data/spec/unit/htty/cli/commands/cookies_use_spec.rb +0 -75
- data/spec/unit/htty/cli/commands/delete_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/exit_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/follow_spec.rb +0 -70
- data/spec/unit/htty/cli/commands/form_add_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/form_clear_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/form_remove_all_spec.rb +0 -66
- data/spec/unit/htty/cli/commands/form_remove_spec.rb +0 -57
- data/spec/unit/htty/cli/commands/form_spec.rb +0 -57
- data/spec/unit/htty/cli/commands/fragment_clear_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/fragment_set_spec.rb +0 -73
- data/spec/unit/htty/cli/commands/fragment_unset_spec.rb +0 -72
- data/spec/unit/htty/cli/commands/get_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/header_set_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/header_unset_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/headers_clear_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/headers_request_spec.rb +0 -81
- data/spec/unit/htty/cli/commands/headers_response_spec.rb +0 -77
- data/spec/unit/htty/cli/commands/headers_set_spec.rb +0 -74
- data/spec/unit/htty/cli/commands/headers_unset_all_spec.rb +0 -71
- data/spec/unit/htty/cli/commands/headers_unset_spec.rb +0 -63
- data/spec/unit/htty/cli/commands/help_spec.rb +0 -67
- data/spec/unit/htty/cli/commands/history_spec.rb +0 -65
- data/spec/unit/htty/cli/commands/history_verbose_spec.rb +0 -72
- data/spec/unit/htty/cli/commands/host_set_spec.rb +0 -71
- data/spec/unit/htty/cli/commands/http_delete_spec.rb +0 -75
- data/spec/unit/htty/cli/commands/http_get_spec.rb +0 -77
- data/spec/unit/htty/cli/commands/http_head_spec.rb +0 -69
- data/spec/unit/htty/cli/commands/http_options_spec.rb +0 -69
- data/spec/unit/htty/cli/commands/http_patch_spec.rb +0 -73
- data/spec/unit/htty/cli/commands/http_post_spec.rb +0 -73
- data/spec/unit/htty/cli/commands/http_put_spec.rb +0 -71
- data/spec/unit/htty/cli/commands/http_trace_spec.rb +0 -69
- data/spec/unit/htty/cli/commands/patch_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/path_set_spec.rb +0 -72
- data/spec/unit/htty/cli/commands/port_set_spec.rb +0 -73
- data/spec/unit/htty/cli/commands/post_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/put_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/query_add_spec.rb +0 -82
- data/spec/unit/htty/cli/commands/query_clear_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/query_remove_spec.rb +0 -82
- data/spec/unit/htty/cli/commands/query_set_spec.rb +0 -82
- data/spec/unit/htty/cli/commands/query_unset_all_spec.rb +0 -74
- data/spec/unit/htty/cli/commands/query_unset_spec.rb +0 -75
- data/spec/unit/htty/cli/commands/quit_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/reuse_spec.rb +0 -72
- data/spec/unit/htty/cli/commands/scheme_set_spec.rb +0 -74
- data/spec/unit/htty/cli/commands/shared_examples_for_commands.rb +0 -55
- data/spec/unit/htty/cli/commands/ssl_verification_off_spec.rb +0 -67
- data/spec/unit/htty/cli/commands/ssl_verification_on_spec.rb +0 -60
- data/spec/unit/htty/cli/commands/ssl_verification_spec.rb +0 -65
- data/spec/unit/htty/cli/commands/status_spec.rb +0 -73
- data/spec/unit/htty/cli/commands/undo_spec.rb +0 -57
- data/spec/unit/htty/cli/commands/userinfo_clear_spec.rb +0 -64
- data/spec/unit/htty/cli/commands/userinfo_set_spec.rb +0 -97
- data/spec/unit/htty/cli/commands/userinfo_unset_spec.rb +0 -72
- data/spec/unit/htty/cli/display_spec.rb +0 -84
- data/spec/unit/htty/cli_spec.rb +0 -28
- data/spec/unit/htty/command.rb +0 -47
- data/spec/unit/htty/headers_spec.rb +0 -40
- data/spec/unit/htty/payload_spec.rb +0 -60
- data/spec/unit/htty/preferences_spec.rb +0 -8
- data/spec/unit/htty/request_follow_spec.rb +0 -94
- data/spec/unit/htty/request_spec.rb +0 -1232
- data/spec/unit/htty/request_userinfo_spec.rb +0 -208
- data/spec/unit/htty/response_spec.rb +0 -0
- data/spec/unit/htty/session_spec.rb +0 -10
- data/spec/unit/htty/shared_examples_for_requests.rb +0 -32
- data/spec/unit/htty/url_escaping.rb +0 -70
- data/spec/unit/htty/version_spec.rb +0 -8
@@ -1,64 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/exit")
|
3
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/quit")
|
4
|
-
|
5
|
-
describe HTTY::CLI::Commands::Quit do
|
6
|
-
describe 'class' do
|
7
|
-
let :klass do
|
8
|
-
subject.class
|
9
|
-
end
|
10
|
-
|
11
|
-
it 'should be an alias_for the expected command' do
|
12
|
-
klass.alias_for.should == nil
|
13
|
-
end
|
14
|
-
|
15
|
-
it 'should have the expected aliases' do
|
16
|
-
klass.aliases.should == [HTTY::CLI::Commands::Exit]
|
17
|
-
end
|
18
|
-
|
19
|
-
it 'should belong to the expected category' do
|
20
|
-
klass.category.should == nil
|
21
|
-
end
|
22
|
-
|
23
|
-
it 'should have the expected command_line' do
|
24
|
-
klass.command_line.should == 'qui[t]'
|
25
|
-
end
|
26
|
-
|
27
|
-
it 'should have the expected command_line_arguments' do
|
28
|
-
klass.command_line_arguments.should == nil
|
29
|
-
end
|
30
|
-
|
31
|
-
it 'should have the expected help' do
|
32
|
-
klass.help.should == 'Quits htty'
|
33
|
-
end
|
34
|
-
|
35
|
-
it 'should have the expected help_extended' do
|
36
|
-
klass.help_extended.should == 'Quits htty.'
|
37
|
-
end
|
38
|
-
|
39
|
-
it 'should have the expected see_also_commands' do
|
40
|
-
klass.see_also_commands.should == []
|
41
|
-
end
|
42
|
-
|
43
|
-
describe 'build_for' do
|
44
|
-
it 'should correctly handle a valid, unabbreviated command line' do
|
45
|
-
built = klass.build_for('quit', :session => :the_session)
|
46
|
-
built.should be_instance_of(klass)
|
47
|
-
built.arguments.should == []
|
48
|
-
built.session.should == :the_session
|
49
|
-
end
|
50
|
-
|
51
|
-
it 'should correctly handle a valid, abbreviated command line' do
|
52
|
-
built = klass.build_for('qui', :session => :a_session)
|
53
|
-
built.should be_instance_of(klass)
|
54
|
-
built.arguments.should == []
|
55
|
-
built.session.should == :a_session
|
56
|
-
end
|
57
|
-
|
58
|
-
it 'should correctly handle a command line with a bad command' do
|
59
|
-
built = klass.build_for('x', :session => :another_session)
|
60
|
-
built.should == nil
|
61
|
-
end
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
@@ -1,72 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/history")
|
3
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/history_verbose")
|
4
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/reuse")
|
5
|
-
|
6
|
-
describe HTTY::CLI::Commands::Reuse do
|
7
|
-
describe 'class' do
|
8
|
-
let :klass do
|
9
|
-
subject.class
|
10
|
-
end
|
11
|
-
|
12
|
-
it 'should be an alias_for the expected command' do
|
13
|
-
klass.alias_for.should == nil
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'should have the expected aliases' do
|
17
|
-
klass.aliases.should == []
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'should belong to the expected category' do
|
21
|
-
klass.category.should == 'Navigation'
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'should have the expected command_line' do
|
25
|
-
klass.command_line.should == 'r[euse]'
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'should have the expected command_line_arguments' do
|
29
|
-
klass.command_line_arguments.should == 'INDEX'
|
30
|
-
end
|
31
|
-
|
32
|
-
it 'should have the expected help' do
|
33
|
-
klass.help.should == 'Copies a previous request by the index number ' +
|
34
|
-
'shown in history'
|
35
|
-
end
|
36
|
-
|
37
|
-
it 'should have the expected help_extended' do
|
38
|
-
expected = <<-end_help_extended
|
39
|
-
Copies the properties of a previous request to be used for the request, using the request index number shown in history. Does not communicate with the host.
|
40
|
-
|
41
|
-
The argument is an index number that appears when you type \e[1mhistory\e[0m.
|
42
|
-
end_help_extended
|
43
|
-
klass.help_extended.should == expected.chomp
|
44
|
-
end
|
45
|
-
|
46
|
-
it 'should have the expected see_also_commands' do
|
47
|
-
klass.see_also_commands.should == [HTTY::CLI::Commands::History,
|
48
|
-
HTTY::CLI::Commands::HistoryVerbose]
|
49
|
-
end
|
50
|
-
|
51
|
-
describe 'build_for' do
|
52
|
-
it 'should correctly handle a valid, unabbreviated command line' do
|
53
|
-
built = klass.build_for('reuse foo', :session => :the_session)
|
54
|
-
built.should be_instance_of(klass)
|
55
|
-
built.arguments.should == ['foo']
|
56
|
-
built.session.should == :the_session
|
57
|
-
end
|
58
|
-
|
59
|
-
it 'should correctly handle a valid, abbreviated command line' do
|
60
|
-
built = klass.build_for('r bar', :session => :a_session)
|
61
|
-
built.should be_instance_of(klass)
|
62
|
-
built.arguments.should == ['bar']
|
63
|
-
built.session.should == :a_session
|
64
|
-
end
|
65
|
-
|
66
|
-
it 'should correctly handle a command line with a bad command' do
|
67
|
-
built = klass.build_for('x baz', :session => :another_session)
|
68
|
-
built.should == nil
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
72
|
-
end
|
@@ -1,74 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/address")
|
3
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/port_set")
|
4
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/scheme_set")
|
5
|
-
|
6
|
-
describe HTTY::CLI::Commands::SchemeSet do
|
7
|
-
describe 'class' do
|
8
|
-
let :klass do
|
9
|
-
subject.class
|
10
|
-
end
|
11
|
-
|
12
|
-
it 'should be an alias_for the expected command' do
|
13
|
-
klass.alias_for.should == nil
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'should have the expected aliases' do
|
17
|
-
klass.aliases.should == []
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'should belong to the expected category' do
|
21
|
-
klass.category.should == 'Navigation'
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'should have the expected command_line' do
|
25
|
-
klass.command_line.should == 'sc[heme-set]'
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'should have the expected command_line_arguments' do
|
29
|
-
klass.command_line_arguments.should == 'SCHEME'
|
30
|
-
end
|
31
|
-
|
32
|
-
it 'should have the expected help' do
|
33
|
-
klass.help.should == 'Changes the scheme (protocol identifier) of the ' +
|
34
|
-
"request's address"
|
35
|
-
end
|
36
|
-
|
37
|
-
it 'should have the expected help_extended' do
|
38
|
-
expected = <<-end_help_extended
|
39
|
-
Changes the scheme, or protocol identifier, used for the request. Does not communicate with the host.
|
40
|
-
|
41
|
-
The scheme you supply must be either 'http' or 'https'. Changing the scheme has no effect on the port, and vice versa.
|
42
|
-
|
43
|
-
The console prompt shows the address for the current request.
|
44
|
-
end_help_extended
|
45
|
-
klass.help_extended.should == expected.chomp
|
46
|
-
end
|
47
|
-
|
48
|
-
it 'should have the expected see_also_commands' do
|
49
|
-
klass.see_also_commands.should == [HTTY::CLI::Commands::Address,
|
50
|
-
HTTY::CLI::Commands::PortSet]
|
51
|
-
end
|
52
|
-
|
53
|
-
describe 'build_for' do
|
54
|
-
it 'should correctly handle a valid, unabbreviated command line' do
|
55
|
-
built = klass.build_for('scheme-set foo', :session => :the_session)
|
56
|
-
built.should be_instance_of(klass)
|
57
|
-
built.arguments.should == ['foo']
|
58
|
-
built.session.should == :the_session
|
59
|
-
end
|
60
|
-
|
61
|
-
it 'should correctly handle a valid, abbreviated command line' do
|
62
|
-
built = klass.build_for('sc bar', :session => :a_session)
|
63
|
-
built.should be_instance_of(klass)
|
64
|
-
built.arguments.should == ['bar']
|
65
|
-
built.session.should == :a_session
|
66
|
-
end
|
67
|
-
|
68
|
-
it 'should correctly handle a command line with a bad command' do
|
69
|
-
built = klass.build_for('x baz', :session => :another_session)
|
70
|
-
built.should == nil
|
71
|
-
end
|
72
|
-
end
|
73
|
-
end
|
74
|
-
end
|
@@ -1,55 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
shared_examples_for 'a command' do
|
4
|
-
it 'should be an alias_for the expected command' do
|
5
|
-
described_class.alias_for.should == alias_for
|
6
|
-
end
|
7
|
-
|
8
|
-
it 'should have the expected aliases' do
|
9
|
-
described_class.aliases.should == aliases
|
10
|
-
end
|
11
|
-
|
12
|
-
it 'should belong to the expected category' do
|
13
|
-
described_class.category.should == category
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'should have the expected command_line' do
|
17
|
-
described_class.command_line.should == command_line
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'should have the expected command_line_arguments' do
|
21
|
-
described_class.command_line_arguments.should == arguments
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'should have the expected help' do
|
25
|
-
described_class.help.should_not be_empty
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'should have the expected help_extended' do
|
29
|
-
described_class.help_extended.should be_multiline
|
30
|
-
end
|
31
|
-
|
32
|
-
it 'should have the expected see_also_commands' do
|
33
|
-
described_class.see_also_commands.should =~ see_also_commands
|
34
|
-
end
|
35
|
-
|
36
|
-
describe 'build_for' do
|
37
|
-
it 'should correctly handle a valid, unabbreviated command line' do
|
38
|
-
command_used = command_line.tr('[]', '')
|
39
|
-
built = described_class.build_for(command_used, :session => :the_session)
|
40
|
-
built.should be_instance_of(described_class)
|
41
|
-
built.arguments.should == []
|
42
|
-
built.session.should == :the_session
|
43
|
-
end
|
44
|
-
|
45
|
-
it 'should correctly handle a valid, abbreviated command line' do
|
46
|
-
if command_line.match /^(.*)\[(.*?)\]$/
|
47
|
-
command_used = $1 + $2[0, rand($2.length)+1]
|
48
|
-
built = described_class.build_for(command_used, :session => :the_session)
|
49
|
-
built.should be_instance_of(described_class)
|
50
|
-
built.arguments.should == []
|
51
|
-
built.session.should == :the_session
|
52
|
-
end
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
@@ -1,67 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification")
|
3
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification_off")
|
4
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification_on")
|
5
|
-
|
6
|
-
describe HTTY::CLI::Commands::SslVerificationOff do
|
7
|
-
describe 'class' do
|
8
|
-
let :klass do
|
9
|
-
subject.class
|
10
|
-
end
|
11
|
-
|
12
|
-
it 'should be an alias_for the expected command' do
|
13
|
-
klass.alias_for.should == nil
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'should have the expected aliases' do
|
17
|
-
klass.aliases.should == []
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'should belong to the expected category' do
|
21
|
-
klass.category.should == 'Preferences'
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'should have the expected command_line' do
|
25
|
-
klass.command_line.should == 'ssl-verification-of[f]'
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'should have the expected command_line_arguments' do
|
29
|
-
klass.command_line_arguments.should == nil
|
30
|
-
end
|
31
|
-
|
32
|
-
it 'should have the expected help' do
|
33
|
-
klass.help.should == 'Disables SSL certificate verification'
|
34
|
-
end
|
35
|
-
|
36
|
-
it 'should have the expected help_extended' do
|
37
|
-
klass.help_extended.should == 'Disables SSL certificate verification. ' +
|
38
|
-
'Does not communicate with the host.'
|
39
|
-
end
|
40
|
-
|
41
|
-
it 'should have the expected see_also_commands' do
|
42
|
-
klass.see_also_commands.should == [HTTY::CLI::Commands::SslVerificationOn,
|
43
|
-
HTTY::CLI::Commands::SslVerification]
|
44
|
-
end
|
45
|
-
|
46
|
-
describe 'build_for' do
|
47
|
-
it 'should correctly handle a valid, unabbreviated command line' do
|
48
|
-
built = klass.build_for('ssl-verification-off', :session => :the_session)
|
49
|
-
built.should be_instance_of(klass)
|
50
|
-
built.arguments.should == []
|
51
|
-
built.session.should == :the_session
|
52
|
-
end
|
53
|
-
|
54
|
-
it 'should correctly handle a valid, abbreviated command line' do
|
55
|
-
built = klass.build_for('ssl-verification-of', :session => :a_session)
|
56
|
-
built.should be_instance_of(klass)
|
57
|
-
built.arguments.should == []
|
58
|
-
built.session.should == :a_session
|
59
|
-
end
|
60
|
-
|
61
|
-
it 'should correctly handle a command line with a bad command' do
|
62
|
-
built = klass.build_for('x', :session => :another_session)
|
63
|
-
built.should == nil
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
67
|
-
end
|
@@ -1,60 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification")
|
3
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification_off")
|
4
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification_on")
|
5
|
-
|
6
|
-
describe HTTY::CLI::Commands::SslVerificationOn do
|
7
|
-
describe 'class' do
|
8
|
-
let :klass do
|
9
|
-
subject.class
|
10
|
-
end
|
11
|
-
|
12
|
-
it 'should be an alias_for the expected command' do
|
13
|
-
klass.alias_for.should == nil
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'should have the expected aliases' do
|
17
|
-
klass.aliases.should == []
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'should belong to the expected category' do
|
21
|
-
klass.category.should == 'Preferences'
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'should have the expected command_line' do
|
25
|
-
klass.command_line.should == 'ssl-verification-on'
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'should have the expected command_line_arguments' do
|
29
|
-
klass.command_line_arguments.should == nil
|
30
|
-
end
|
31
|
-
|
32
|
-
it 'should have the expected help' do
|
33
|
-
klass.help.should == 'Reenables SSL certificate verification'
|
34
|
-
end
|
35
|
-
|
36
|
-
it 'should have the expected help_extended' do
|
37
|
-
klass.help_extended.should == 'Reenables SSL certificate verification. ' +
|
38
|
-
'Does not communicate with the host.'
|
39
|
-
end
|
40
|
-
|
41
|
-
it 'should have the expected see_also_commands' do
|
42
|
-
klass.see_also_commands.should == [HTTY::CLI::Commands::SslVerificationOff,
|
43
|
-
HTTY::CLI::Commands::SslVerification]
|
44
|
-
end
|
45
|
-
|
46
|
-
describe 'build_for' do
|
47
|
-
it 'should correctly handle a valid, unabbreviated command line' do
|
48
|
-
built = klass.build_for('ssl-verification-on', :session => :the_session)
|
49
|
-
built.should be_instance_of(klass)
|
50
|
-
built.arguments.should == []
|
51
|
-
built.session.should == :the_session
|
52
|
-
end
|
53
|
-
|
54
|
-
it 'should correctly handle a command line with a bad command' do
|
55
|
-
built = klass.build_for('x', :session => :another_session)
|
56
|
-
built.should == nil
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
@@ -1,65 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification")
|
3
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification_off")
|
4
|
-
require File.expand_path("#{File.dirname __FILE__}/../../../../../lib/htty/cli/commands/ssl_verification_on")
|
5
|
-
|
6
|
-
describe HTTY::CLI::Commands::SslVerification do
|
7
|
-
describe 'class' do
|
8
|
-
let :klass do
|
9
|
-
subject.class
|
10
|
-
end
|
11
|
-
|
12
|
-
it 'should be an alias_for the expected command' do
|
13
|
-
klass.alias_for.should == nil
|
14
|
-
end
|
15
|
-
|
16
|
-
it 'should have the expected aliases' do
|
17
|
-
klass.aliases.should == []
|
18
|
-
end
|
19
|
-
|
20
|
-
it 'should belong to the expected category' do
|
21
|
-
klass.category.should == 'Preferences'
|
22
|
-
end
|
23
|
-
|
24
|
-
it 'should have the expected command_line' do
|
25
|
-
klass.command_line.should == 'ssl-verification'
|
26
|
-
end
|
27
|
-
|
28
|
-
it 'should have the expected command_line_arguments' do
|
29
|
-
klass.command_line_arguments.should == nil
|
30
|
-
end
|
31
|
-
|
32
|
-
it 'should have the expected help' do
|
33
|
-
klass.help.should == 'Displays the preference for SSL certificate ' +
|
34
|
-
'verification'
|
35
|
-
end
|
36
|
-
|
37
|
-
it 'should have the expected help_extended' do
|
38
|
-
expected = <<-end_help_extended
|
39
|
-
Displays the preference for SSL certificate verification. Does not communicate with the host.
|
40
|
-
|
41
|
-
When issuing HTTP Secure requests, server certificates will be verified. You can disable and reenable this behavior.
|
42
|
-
end_help_extended
|
43
|
-
klass.help_extended.should == expected.chomp
|
44
|
-
end
|
45
|
-
|
46
|
-
it 'should have the expected see_also_commands' do
|
47
|
-
klass.see_also_commands.should == [HTTY::CLI::Commands::SslVerificationOff,
|
48
|
-
HTTY::CLI::Commands::SslVerificationOn]
|
49
|
-
end
|
50
|
-
|
51
|
-
describe 'build_for' do
|
52
|
-
it 'should correctly handle a valid, unabbreviated command line' do
|
53
|
-
built = klass.build_for('ssl-verification', :session => :the_session)
|
54
|
-
built.should be_instance_of(klass)
|
55
|
-
built.arguments.should == []
|
56
|
-
built.session.should == :the_session
|
57
|
-
end
|
58
|
-
|
59
|
-
it 'should correctly handle a command line with a bad command' do
|
60
|
-
built = klass.build_for('x', :session => :another_session)
|
61
|
-
built.should == nil
|
62
|
-
end
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|