This repository was archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 92
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CircleCI passes! |
edfa288
to
37ad97d
Compare
1a4a7ed
to
1ecaa44
Compare
Clean flow with supertest! No comments here. Looks simple and understandable. |
dino-rodriguez
approved these changes
Mar 13, 2020
37ad97d
to
b0d74a9
Compare
1ecaa44
to
7b32c5a
Compare
keefertaylor
approved these changes
Mar 16, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Left some stylistic feedback that I don't feel too strongly about.
@@ -17,8 +19,39 @@ describe('E2E - publicAPIRouter', function(): void { | |||
.expect(200, "I'm alive!", done) | |||
}) | |||
|
|||
// Shut down Express application | |||
it('Returns the correct MAINNET address for a known payment pointer', function(done): void { | |||
const expectedResponse = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would re-write this as follows for clarity. Moving comments around and giving /hbergren
a name since it's an important part of the world.
// GIVEN a payment pointer known to have an associated xrpl-mainnet address
const paymentPointer = '/hbergren' // NEW
const expectedResponse = {
address: 'X7gJd9k3hHMRABeqvVTgeak8dRJ6eaJFYbhRVKAci6fEomg',
network: 'xrpl-mainnet',
}
// WHEN we make a GET request to the public endpoint to retrieve payment info with an Accept header specifying xrpl-mainnet
request(app.publicAPIExpress)
.get(paymentPointer) // CHANGED
.set('Accept', 'application/xrpl-mainnet+json')
// THEN we get back the XRP address and network associated with that payment pointer for xrpl-mainnet.
.expect(200, expectedResponse, done)
}) | ||
|
||
it('Returns the correct TESTNET address for a known payment pointer', function(done): void { | ||
const expectedResponse = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd apply the same pattern on this method.
0xASK
approved these changes
Mar 16, 2020
8613922
to
3d7d6cb
Compare
64116a1
to
31d1edd
Compare
dino-rodriguez
pushed a commit
that referenced
this pull request
Jun 17, 2020
- Add new launch.json configuration to allow VSCode Node debug breakpoints to be triggered when you run a single Mocha test file or run all tests. Super helpful for debugging why a test you thought should work is not. - Add two new "golden path" tests for the public GET API. Kind of hacky in that it uses a "payment pointer" of 127.0.0.1, but if this works on CI, I'm all for it.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
High Level Overview of Change
launch.json
configuration to allow VSCode Node debug breakpoints to be triggered when you run a single Mocha test file or run all tests. Super helpful for debugging why a test you thought should work is not.127.0.0.1
, but if this works on CI, I'm all for it.Context of Change
I was struggling with how to do an E2E test of the public GET API, since in reality, it will only get requests forwarded from some other place.
Like if our PayID service is at
payid.xpring.io
, there won't be any payment pointers under that domain. They will all bexpring.money/{username}
, which gets redirected topayid.xpring.io
.But, if I hit the public GET API from a Mocha test, it assumes a "domain" of
127.0.0.1
, so if CI passes on this, we can assert the E2E behavior of the public GET API!Type of Change
Before / After
Hopefully CI will now have more tests passing!
Test Plan
npm run test
works here, but the real test is if this works on CI.Future Tasks
Might be worth testing some failure scenarios (Invalid
Accept
Header, 404 error response payload, etc.)