I am using autho0 and express-jwt in order to authenticate my app users.
Everything is really cool besides the tests. The content that i pass in my API is strictly partitioned by authors. This means you can only access a content if you own it.
I am using req.user.sub
(wich is provided by jwt if the user is recognized) to set the author of the content that is being passed in my API.
Should i use req.user.name to provide the author ? If so, how can i mock the authentication in order to write my tests.
I implemented a simple solution which is a bit rudimentary:
This way i can just use
MyApiClass.testAuthorName
statically in my tests.