cypress-on-rails 1.12.1 → 1.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +3 -3
- data/.gitignore +4 -1
- data/CHANGELOG.md +13 -0
- data/README.md +91 -5
- data/cypress-on-rails.gemspec +1 -0
- data/lib/cypress-on-rails.rb +2 -2
- data/lib/cypress_on_rails/configuration.rb +3 -0
- data/lib/cypress_on_rails/middleware.rb +6 -10
- data/lib/cypress_on_rails/middleware_config.rb +17 -0
- data/lib/cypress_on_rails/railtie.rb +5 -1
- data/lib/cypress_on_rails/vcr_middleware.rb +73 -0
- data/lib/cypress_on_rails/version.rb +1 -1
- data/lib/generators/cypress_on_rails/install_generator.rb +18 -24
- data/lib/generators/cypress_on_rails/templates/config/initializers/cypress_on_rails.rb.erb +1 -0
- data/lib/generators/cypress_on_rails/templates/spec/cypress/app_commands/clean.rb +6 -0
- data/lib/generators/cypress_on_rails/templates/spec/cypress/{cypress_helper.rb → cypress_helper.rb.erb} +5 -0
- data/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_vcr.cy.js +24 -0
- data/lib/generators/cypress_on_rails/templates/spec/cypress/support/{index.js → index.js.erb} +1 -0
- data/lib/generators/cypress_on_rails/templates/spec/cypress/support/on-rails.js +1 -1
- data/lib/generators/cypress_on_rails/templates/spec/cypress.config.js +9 -0
- data/plugin/.gitignore +1 -0
- data/plugin/cypress/plugins/index.js +4 -0
- data/plugin/package.json +31 -0
- data/plugin/support/index.js +37 -0
- data/spec/cypress_on_rails/middleware_spec.rb +3 -1
- data/spec/cypress_on_rails/vcr_middleware_spec.rb +119 -0
- data/specs_e2e/cypress.config.js +10 -0
- data/{spec/integrations → specs_e2e}/rails_3_2/.gitignore +1 -1
- data/specs_e2e/rails_3_2/.ruby_version +1 -0
- data/{spec/integrations → specs_e2e}/rails_3_2/Gemfile +1 -1
- data/{spec/integrations → specs_e2e}/rails_3_2/test.sh +8 -7
- data/{spec/integrations → specs_e2e}/rails_4_2/.gitignore +3 -2
- data/{spec/integrations → specs_e2e}/rails_4_2/Gemfile +3 -1
- data/specs_e2e/rails_4_2/app/controllers/using_vcr_controller.rb +10 -0
- data/{spec/integrations → specs_e2e}/rails_4_2/app/models/post.rb +3 -1
- data/specs_e2e/rails_4_2/app/views/using_vcr/index.html.erb +6 -0
- data/specs_e2e/rails_4_2/app/views/using_vcr/record_cats.html.erb +7 -0
- data/{spec/integrations → specs_e2e}/rails_4_2/config/routes.rb +5 -0
- data/specs_e2e/rails_4_2/package.json +10 -0
- data/{spec/integrations → specs_e2e}/rails_4_2/test.sh +13 -12
- data/{spec/integrations → specs_e2e}/rails_5_2/.gitignore +1 -1
- data/{spec/integrations → specs_e2e}/rails_5_2/Gemfile +1 -1
- data/specs_e2e/rails_5_2/app/assets/javascripts/posts.js +2 -0
- data/specs_e2e/rails_5_2/app/assets/stylesheets/posts.css +4 -0
- data/{spec/integrations → specs_e2e}/rails_5_2/test.sh +8 -7
- metadata +177 -171
- data/lib/generators/cypress_on_rails/templates/spec/cypress/fixtures/example.json +0 -5
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/actions.spec.js +0 -272
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/aliasing.spec.js +0 -42
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/assertions.spec.js +0 -63
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/connectors.spec.js +0 -55
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/cookies.spec.js +0 -78
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/cypress_api.spec.js +0 -211
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/files.spec.js +0 -86
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/local_storage.spec.js +0 -52
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/location.spec.js +0 -32
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/misc.spec.js +0 -68
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/navigation.spec.js +0 -54
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/network_requests.spec.js +0 -108
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/querying.spec.js +0 -65
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/spies_stubs_clocks.spec.js +0 -62
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/traversal.spec.js +0 -121
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/utilities.spec.js +0 -89
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/viewport.spec.js +0 -59
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/waiting.spec.js +0 -34
- data/lib/generators/cypress_on_rails/templates/spec/cypress/integration/examples/window.spec.js +0 -22
- data/lib/generators/cypress_on_rails/templates/spec/cypress.json +0 -4
- data/spec/integrations/cypress.json +0 -5
- data/spec/integrations/rails_5_2/log/.keep +0 -0
- data/spec/integrations/rails_5_2/tmp/.keep +0 -0
- data/spec/integrations/rails_5_2/vendor/.keep +0 -0
- /data/lib/generators/cypress_on_rails/templates/spec/cypress/{integration/rails_examples/advance_factory_bot_spec.js → e2e/rails_examples/advance_factory_bot.cy.js} +0 -0
- /data/lib/generators/cypress_on_rails/templates/spec/cypress/{integration/rails_examples/other_spec.js → e2e/rails_examples/other.cy.js} +0 -0
- /data/lib/generators/cypress_on_rails/templates/spec/cypress/{integration/rails_examples/using_factory_bot_spec.js → e2e/rails_examples/using_factory_bot.cy.js} +0 -0
- /data/lib/generators/cypress_on_rails/templates/spec/cypress/{integration/rails_examples/using_fixtures_spec.js → e2e/rails_examples/using_fixtures.cy.js} +0 -0
- /data/lib/generators/cypress_on_rails/templates/spec/cypress/{integration/rails_examples/using_scenarios_spec.js → e2e/rails_examples/using_scenarios.cy.js} +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/README.rdoc +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/Rakefile +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/app/assets/stylesheets/application.css +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/app/controllers/application_controller.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/app/controllers/welcome_controller.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/app/helpers/application_helper.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/app/models/post.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/app/views/layouts/application.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/app/views/welcome/index.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/bin/rails +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/application.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/boot.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/environment.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/environments/development.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/environments/production.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/environments/test.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/initializers/backtrace_silencers.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/initializers/inflections.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/initializers/mime_types.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/initializers/secret_token.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/initializers/session_store.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/initializers/wrap_parameters.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/locales/en.yml +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config/routes.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/config.ru +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/log/.keep +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/public/404.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/public/422.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/public/500.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/public/favicon.ico +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/public/robots.txt +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/tmp/.keep +0 -0
- /data/{spec/integrations → specs_e2e}/rails_3_2/vendor/.gitkeep +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/README.rdoc +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/Rakefile +0 -0
- /data/{spec/integrations/rails_5_2/app/assets/javascripts/posts.js → specs_e2e/rails_4_2/app/assets/javascripts/using_vcr.js} +0 -0
- /data/{spec/integrations/rails_5_2/app/assets/stylesheets/posts.css → specs_e2e/rails_4_2/app/assets/stylesheets/using_vcr.css} +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/app/controllers/application_controller.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/app/controllers/welcome_controller.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/app/views/layouts/application.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/app/views/welcome/index.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/bin/bundle +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/bin/rails +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/bin/rake +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/bin/setup +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/application.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/boot.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/environment.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/environments/development.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/environments/production.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/environments/test.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/initializers/backtrace_silencers.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/initializers/cookies_serializer.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/initializers/filter_parameter_logging.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/initializers/inflections.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/initializers/mime_types.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/initializers/session_store.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/initializers/to_time_preserves_timezone.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/initializers/wrap_parameters.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/locales/en.yml +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config/secrets.yml +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/config.ru +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/public/404.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/public/422.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/public/500.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/public/favicon.ico +0 -0
- /data/{spec/integrations → specs_e2e}/rails_4_2/public/robots.txt +0 -0
- /data/{spec/integrations/rails_4_2/log → specs_e2e/rails_4_2/spec}/.keep +0 -0
- /data/{spec/integrations/rails_4_2/spec → specs_e2e/rails_4_2/vendor}/.keep +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/README.md +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/Rakefile +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/assets/stylesheets/scaffold.css +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/controllers/application_controller.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/controllers/posts_controller.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/helpers/posts_helper.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/jobs/application_job.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/models/application_record.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/models/post.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/views/layouts/application.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/views/posts/_form.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/views/posts/edit.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/views/posts/index.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/views/posts/new.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/views/posts/show.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/app/views/welcome/index.html.erb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/bin/bundle +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/bin/rails +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/bin/rake +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/bin/setup +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/bin/update +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/application.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/boot.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/credentials.yml.enc +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/database.yml +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/environment.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/environments/development.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/environments/production.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/environments/test.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/initializers/application_controller_renderer.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/initializers/backtrace_silencers.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/initializers/content_security_policy.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/initializers/cookies_serializer.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/initializers/filter_parameter_logging.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/initializers/inflections.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/initializers/mime_types.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/initializers/wrap_parameters.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/locales/en.yml +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/master.key +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config/routes.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/config.ru +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/db/migrate/20180621085832_create_posts.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/public/404.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/public/422.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/public/500.html +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/public/apple-touch-icon-precomposed.png +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/public/apple-touch-icon.png +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/public/favicon.ico +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/public/robots.txt +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/test/controllers/posts_controller_test.rb +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/test/cypress_fixtures/posts.yml +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/test/fixtures/posts.yml +0 -0
- /data/{spec/integrations → specs_e2e}/rails_5_2/test/models/post_test.rb +0 -0
- /data/{spec/integrations/rails_4_2 → specs_e2e/rails_5_2}/vendor/.keep +0 -0
@@ -0,0 +1,119 @@
|
|
1
|
+
require 'cypress_on_rails/vcr_middleware'
|
2
|
+
require 'vcr'
|
3
|
+
require 'active_support/core_ext/hash' unless Hash.new.respond_to?(:symbolize_keys)
|
4
|
+
|
5
|
+
module CypressOnRails
|
6
|
+
RSpec.describe VCRMiddleware do
|
7
|
+
let(:app) { ->(env) { [200, {}, ["app did #{env['PATH_INFO']}"]] } }
|
8
|
+
let(:vcr) { class_double(VCR, turn_on!: true, turn_off!: true, insert_cassette: true, eject_cassette: true) }
|
9
|
+
subject { described_class.new(app, vcr) }
|
10
|
+
|
11
|
+
let(:env) { {} }
|
12
|
+
|
13
|
+
let(:response) { subject.call(env) }
|
14
|
+
|
15
|
+
def rack_input(json_value)
|
16
|
+
StringIO.new(JSON.generate(json_value))
|
17
|
+
end
|
18
|
+
|
19
|
+
describe '/__cypress__/vcr/insert' do
|
20
|
+
before do
|
21
|
+
env['PATH_INFO'] = '/__cypress__/vcr/insert'
|
22
|
+
end
|
23
|
+
|
24
|
+
it do
|
25
|
+
env['rack.input'] = rack_input(['cas1'])
|
26
|
+
|
27
|
+
aggregate_failures do
|
28
|
+
expect(response).to eq([201,
|
29
|
+
{"Content-Type"=>"application/json"},
|
30
|
+
["{\"message\":\"OK\"}"]])
|
31
|
+
expect(vcr).to have_received(:turn_on!)
|
32
|
+
expect(vcr).to have_received(:insert_cassette).with('cas1', {})
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
it 'works with record' do
|
37
|
+
env['rack.input'] = rack_input(['cas1', { "record" => "new_episodes" }])
|
38
|
+
|
39
|
+
aggregate_failures do
|
40
|
+
expect(response).to eq([201,
|
41
|
+
{"Content-Type"=>"application/json"},
|
42
|
+
["{\"message\":\"OK\"}"]])
|
43
|
+
expect(vcr).to have_received(:insert_cassette).with('cas1', record: :new_episodes)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'works with match_requests_on' do
|
48
|
+
env['rack.input'] = rack_input(['cas1', { "match_requests_on" => ["method", "uri"] }])
|
49
|
+
|
50
|
+
aggregate_failures do
|
51
|
+
expect(response).to eq([201,
|
52
|
+
{"Content-Type"=>"application/json"},
|
53
|
+
["{\"message\":\"OK\"}"]])
|
54
|
+
expect(vcr).to have_received(:insert_cassette).with('cas1', match_requests_on: [:method, :uri])
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'works with serialize_with' do
|
59
|
+
env['rack.input'] = rack_input(['cas1', { "serialize_with" => "yaml" }])
|
60
|
+
|
61
|
+
aggregate_failures do
|
62
|
+
expect(response).to eq([201,
|
63
|
+
{"Content-Type"=>"application/json"},
|
64
|
+
["{\"message\":\"OK\"}"]])
|
65
|
+
expect(vcr).to have_received(:insert_cassette).with('cas1', serialize_with: :yaml)
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'works with persist_with' do
|
70
|
+
env['rack.input'] = rack_input(['cas1', { "persist_with" => "file_system" }])
|
71
|
+
|
72
|
+
aggregate_failures do
|
73
|
+
expect(response).to eq([201,
|
74
|
+
{"Content-Type"=>"application/json"},
|
75
|
+
["{\"message\":\"OK\"}"]])
|
76
|
+
expect(vcr).to have_received(:insert_cassette).with('cas1', persist_with: :file_system)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
describe '/__cypress__/vcr/eject' do
|
82
|
+
before do
|
83
|
+
env['PATH_INFO'] = '/__cypress__/vcr/eject'
|
84
|
+
end
|
85
|
+
|
86
|
+
it do
|
87
|
+
aggregate_failures do
|
88
|
+
expect(response).to eq([201,
|
89
|
+
{"Content-Type"=>"application/json"},
|
90
|
+
["{\"message\":\"OK\"}"]])
|
91
|
+
expect(vcr).to have_received(:turn_off!)
|
92
|
+
expect(vcr).to have_received(:eject_cassette)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
describe '"Other paths"' do
|
98
|
+
it 'calls vcr turn off the first time' do
|
99
|
+
env['PATH_INFO'] = '/test'
|
100
|
+
|
101
|
+
expect(response).to eq([200, {}, ["app did /test"]])
|
102
|
+
expect(vcr).to have_received(:turn_off!)
|
103
|
+
end
|
104
|
+
|
105
|
+
it 'runs app' do
|
106
|
+
aggregate_failures do
|
107
|
+
%w(/ /__cypress__/login command /cypress_command /).each do |path|
|
108
|
+
env['PATH_INFO'] = path
|
109
|
+
|
110
|
+
response = subject.call(env)
|
111
|
+
|
112
|
+
expect(response).to eq([200, {}, ["app did #{path}"]])
|
113
|
+
expect(vcr).to have_received(:turn_off!)
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
2.3.8
|
@@ -15,7 +15,8 @@ bundle install --quiet --gemfile="$DIR/Gemfile" --retry 2 --path vendor/bundle
|
|
15
15
|
|
16
16
|
echo '-- cypress install'
|
17
17
|
bundle exec ./bin/rails g cypress_on_rails:install --install_cypress_with=npm
|
18
|
-
rm -vf cypress/
|
18
|
+
rm -vf cypress/e2e/rails_examples/advance_factory_bot.cy.js
|
19
|
+
rm -vf cypress/e2e/rails_examples/using_vcr.cy.js
|
19
20
|
|
20
21
|
echo '-- start rails server'
|
21
22
|
# make sure the server is not running
|
@@ -25,13 +26,13 @@ bundle exec ./bin/rails server -p 5017 -e test &
|
|
25
26
|
sleep 2 # give rails a chance to start up correctly
|
26
27
|
|
27
28
|
echo '-- cypress run'
|
28
|
-
cp -fv ../cypress.
|
29
|
-
if [ -z $CYPRESS_RECORD_KEY ]
|
30
|
-
then
|
31
|
-
|
32
|
-
else
|
29
|
+
cp -fv ../cypress.config.js .
|
30
|
+
# if [ -z $CYPRESS_RECORD_KEY ]
|
31
|
+
# then
|
32
|
+
# node_modules/.bin/cypress run
|
33
|
+
# else
|
33
34
|
node_modules/.bin/cypress run --record
|
34
|
-
fi
|
35
|
+
# fi
|
35
36
|
|
36
37
|
echo '-- stop rails server'
|
37
38
|
kill -9 `cat tmp/pids/server.pid`
|
@@ -1,10 +1,15 @@
|
|
1
1
|
Rails.application.routes.draw do
|
2
|
+
get 'using_vcr/index'
|
3
|
+
|
2
4
|
# The priority is based upon order of creation: first created -> highest priority.
|
3
5
|
# See how all your routes lay out with "rake routes".
|
4
6
|
|
5
7
|
# You can have the root of your site routed with "root"
|
6
8
|
root 'welcome#index'
|
7
9
|
|
10
|
+
get 'using_vcr/:action', to: 'using_vcr#:action'
|
11
|
+
|
12
|
+
|
8
13
|
# Example of regular route:
|
9
14
|
# get 'products/:id' => 'catalog#view'
|
10
15
|
|
@@ -10,29 +10,30 @@ export BUNDLE_GEMFILE="$DIR/Gemfile"
|
|
10
10
|
cd $DIR
|
11
11
|
|
12
12
|
echo '-- bundle install'
|
13
|
+
gem install bundler -v "~> 1.0" --conservative
|
13
14
|
bundle --version
|
14
15
|
bundle install --quiet --gemfile="$DIR/Gemfile" --retry 2 --path vendor/bundle
|
15
16
|
|
16
17
|
echo '-- cypress install'
|
17
|
-
|
18
|
-
|
18
|
+
yarn install
|
19
|
+
bundle exec ./bin/rails g cypress_on_rails:install --cypress_folder=spec/cypress --experimental --skip
|
20
|
+
rm -vf spec/cypress/e2e/rails_examples/advance_factory_bot.cy.js
|
19
21
|
|
20
22
|
echo '-- start rails server'
|
21
23
|
# make sure the server is not running
|
22
24
|
(kill -9 `cat tmp/pids/server.pid` || true )
|
23
25
|
|
24
26
|
bundle exec ./bin/rails server -p 5017 -e test &
|
25
|
-
sleep
|
27
|
+
sleep 5 # give rails a chance to start up correctly
|
26
28
|
|
27
29
|
echo '-- cypress run'
|
28
|
-
cp -fv ../cypress.
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
fi
|
30
|
+
cp -fv ../cypress.config.js spec/
|
31
|
+
# if [ -z $CYPRESS_RECORD_KEY ]
|
32
|
+
# then
|
33
|
+
# yarn run cypress run -P ./spec
|
34
|
+
# else
|
35
|
+
yarn run cypress run -P ./spec --record
|
36
|
+
# fi
|
36
37
|
|
37
38
|
echo '-- stop rails server'
|
38
|
-
kill -9 `cat
|
39
|
+
kill -9 `cat tmp/pids/server.pid`
|
@@ -19,7 +19,8 @@ bundle exec ./bin/rails db:drop || true
|
|
19
19
|
bundle exec ./bin/rails db:create db:migrate
|
20
20
|
|
21
21
|
echo '-- cypress install'
|
22
|
-
bundle exec ./bin/rails g cypress_on_rails:install --cypress_folder=test/cypress --
|
22
|
+
bundle exec ./bin/rails g cypress_on_rails:install --cypress_folder=test/cypress --skip
|
23
|
+
rm -vf test/cypress/e2e/rails_examples/using_vcr.cy.js
|
23
24
|
|
24
25
|
echo '-- start rails server'
|
25
26
|
# make sure the server is not running
|
@@ -29,14 +30,14 @@ bundle exec ./bin/rails server -p 5017 -e test &
|
|
29
30
|
sleep 2 # give rails a chance to start up correctly
|
30
31
|
|
31
32
|
echo '-- cypress run'
|
32
|
-
cp -fv ../cypress.
|
33
|
+
cp -fv ../cypress.config.js test/
|
33
34
|
cd test
|
34
|
-
if [ -z $CYPRESS_RECORD_KEY ]
|
35
|
-
then
|
36
|
-
|
37
|
-
else
|
35
|
+
# if [ -z $CYPRESS_RECORD_KEY ]
|
36
|
+
# then
|
37
|
+
# yarn run cypress run
|
38
|
+
# else
|
38
39
|
yarn run cypress run --record
|
39
|
-
fi
|
40
|
+
# fi
|
40
41
|
|
41
42
|
echo '-- stop rails server'
|
42
43
|
kill -9 `cat ../tmp/pids/server.pid` || true
|