Skip to content
This repository was archived by the owner on Mar 8, 2024. It is now read-only.

e2e test the public GET API #71

Merged
merged 0 commits into from
Mar 16, 2020
Merged

e2e test the public GET API #71

merged 0 commits into from
Mar 16, 2020

Conversation

0xCLARITY
Copy link
Collaborator

High Level Overview of Change

  • 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.

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 be xpring.money/{username}, which gets redirected to payid.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

  • New feature (non-breaking change which adds functionality)

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.)

@0xCLARITY 0xCLARITY self-assigned this Mar 13, 2020
@0xCLARITY
Copy link
Collaborator Author

CircleCI passes!

@dino-rodriguez
Copy link
Member

Clean flow with supertest! No comments here. Looks simple and understandable.

Copy link
Collaborator

@keefertaylor keefertaylor left a 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 = {
Copy link
Collaborator

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 = {
Copy link
Collaborator

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.

@keefertaylor keefertaylor mentioned this pull request Mar 16, 2020
2 tasks
@0xCLARITY 0xCLARITY force-pushed the update-seed-script branch 2 times, most recently from 8613922 to 3d7d6cb Compare March 16, 2020 17:28
@0xCLARITY 0xCLARITY changed the base branch from update-seed-script to master March 16, 2020 17:29
@0xCLARITY 0xCLARITY merged this pull request into master Mar 16, 2020
@0xCLARITY 0xCLARITY deleted the test-public-api branch March 16, 2020 18:48
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.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants