Giter Site home page Giter Site logo

waldemarnt / building-testable-apis-with-nodejs-code Goto Github PK

View Code? Open in Web Editor NEW
104.0 10.0 23.0 1.25 MB

Reposit贸rio oficial do c贸digo utilizado no livro Construindo APIs test谩veis com Node.js 馃摋

JavaScript 100.00%
nodejs javascript ecmascript6 tdd

building-testable-apis-with-nodejs-code's Issues

[SUGESTAO] Adicionar alguma logica de negocio

Oi Waldemar, achei muito boa sua iniciativa de disponibilizar o projeto pra galera.

Queria sugerir algo:

  • adicionar algumas logicas de neg贸cios diferente para cada item, para mostrar qual a melhor forma de tratar os business exceptions. Por exemplo:
    • se o produto n茫o tem estoque retorna um erro tratado
    • se o produto est谩 faltando alguma informa莽茫o retorna um erro
  • Retornar error codes que o Frontend possa tratar com i18n
{
    "success": false,
    "errors": [
    {
      "code": "those.skus.are.not.found",
      "message": "There are no stock available for those SKUS",
      "data": ["D4324-00192-1923", "D4324-00192-4922", "D4324-00192-9876"]
    },
    {
      "code": "coupon.code.expired",
      "message": "This coupon is not available",
      "data": "JS10"
    }
  ]
}

Meus parab茅ns pelo projeto 茅 uma 贸tima ajuda para a comunidade open source.

TypeError: this.AuthService is not a constructor

Dada a classe:

class UsersController {
    constructor(User, AuthService) {
        this.User = User;
        this.AuthService = AuthService;
    }

    async authenticate(req, res) {
        const authService = new this.AuthService(this.User);
        const user = await authService.authenticate(req.body);
        if (!user) {
            return res.sendStatus(401);
        }
        const token = this.AuthService.generateToken({
            name: user.name,
            email: user.email,
            password: user.password,
            role: user.role
        });
        return res.send({ token });
    }
}

export default UsersController;

os testes unit谩rios apresentam o erro:

Controller: Users
       login
         should return 401 when the user can not be found:
     TypeError: this.AuthService is not a constructor
      at UsersController.authenticate (src/controllers/users.js:69:29)
      at Context.<anonymous> (test/unit/controllers/users_spec.js:298:35)
      at processImmediate (node:internal/timers:464:21)

para ver o codigo completo atual pode verificar em:
https://github.com/gfkauer/to-do-api

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.