Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TEST] Add an end-to-end test #137

Closed
wants to merge 5 commits into from

Conversation

rohitpaulk
Copy link
Collaborator

Based on segmentio/analytics-node#134.

The RUNSCOPE_TOKEN env var has to be added for this to work, tests will fail until that is done. Here's an example of passing tests on my fork: rohitpaulk#10

# to receive the data sent by this library.
describe 'End-to-end tests', e2e: true do
WRITE_KEY = 'qhdMksLsQTi9MES3CHyzsWRRt4ub5VM6'
RUNSCOPE_BUCKET_KEY = 'pwb8mcmfks0f'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a comment mentioning this bucket can be viewed at https://www.runscope.com/stream/umkvkgv7ndby

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(umkvkgv7ndby and not pwb8mcmfks0f - sorry about the mixup!)

# webhook connected to the source (configured manually via the app) is able
# to receive the data sent by this library.
describe 'End-to-end tests', e2e: true do
WRITE_KEY = 'qhdMksLsQTi9MES3CHyzsWRRt4ub5VM6'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add a comment that this writeKey corresponds to https://app.segment.com/segment-libraries/sources/analytics_ruby_e2e_test/overview

@@ -4,6 +4,7 @@ default_tasks = []

RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = 'spec/**/*_spec.rb'
spec.rspec_opts = "--tag ~e2e" if ENV["RUN_E2E_TESTS"] != "true"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should move this to Travis (like the runscope token). I believe non-owners won't be able to get the Runscope token anyway.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've added RUN_E2E_TESTS as a variable in travis https://cloudup.com/cmDLAS18POA

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I placed this check here to ensure that bundle exec rake works on a local system without hitting the network - less friction for an external contributor trying to run tests on their machine.

I believe non-owners won't be able to get the Runscope token anyway.

Ah, you're right - I've changed this to only run the end-to-end tests if travis secure env vars are present (master builds, or PRs from owners). 6b2983c

.travis.yml Outdated
@@ -14,3 +11,10 @@ rvm:

before_install:
- gem install bundler

script:
- if [ "$TRAVIS_SECURE_ENV_VARS" != "false" ]; then
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@f2prateek For this to work, we'll have to remove the RUN_E2E_TESTS variable added to travis.

Either that, or we set both RUN_E2E_TESTS and RUNSCOPE_TOKEN as encypted variables and remove this check.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can update the RUN_E2E_TESTS to be encrypted. That seems easiest - also makes it easy to run the tests locally when needed.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool, I'll remove the check then

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added RUN_E2E_TESTS as an encrypted variable now.

@rohitpaulk rohitpaulk changed the title Add an end-to-end test [TEST] Add an end-to-end test Dec 14, 2017
@rohitpaulk
Copy link
Collaborator Author

Code updated. The E2E test should not be triggered in this PR, as it is from my fork. I've opened #139 to actually run the E2E test.

Will close this as soon as the tests pass.

@rohitpaulk rohitpaulk closed this Dec 15, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants