Giter Club home page Giter Club logo

Comments (3)

ojongerius avatar ojongerius commented on June 2, 2024

I started looking at this out of interest. It looks like we can easily created a mocked context, and pass it in to the query like so:

   // Create mock context
  const mockedContext = {
    headers: {
    'Content-Type': 'application/json',
    authorization: 'Bearer ' + token
    }
  };

  const rootValue = {};
  // Pass context into they query
  const result = await graphql(graphqlSchema, query, rootValue, mockedContext);

This will make tests return correct responses for non existent and malformed tokens, still have to test against a correct token.

To do that, we create a random secret to use, have the server use that for the verification, and create the tokens using the same secret.

When that works we can make it reusable across tests, using the Jest global environment setup for Mongo.

from open-api.

ojongerius avatar ojongerius commented on June 2, 2024

Ha! Just had lunch and creating a valid token really is as simple as:

const token = jwt.sign({ id: 123, name: 'Charlie' }, JWT_CERT);

I'll factor this so that it's available in the test environment and raise a PR.

from open-api.

ojongerius avatar ojongerius commented on June 2, 2024

Changes from #83 were merged in via #58

from open-api.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.