1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

Add jest to auth package + test oidc strategy

This commit is contained in:
Rory Powell 2021-07-13 10:02:08 +01:00
parent e1bea33d9a
commit 4f397740e0
3 changed files with 162 additions and 1 deletions

View file

@ -5,6 +5,10 @@
"main": "src/index.js",
"author": "Budibase",
"license": "AGPL-3.0",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"aws-sdk": "^2.901.0",
"bcryptjs": "^2.4.3",

View file

@ -65,7 +65,11 @@ function getEmail(profile, jwtClaims) {
return username
}
return null
throw new Error(
`Could not determine user email from profile ${JSON.stringify(
profile
)} and claims ${JSON.stringify(jwtClaims)}`
)
}
function validEmail(value) {
@ -119,3 +123,6 @@ exports.strategyFactory = async function (config, callbackUrl) {
throw new Error("Error constructing OIDC authentication strategy", err)
}
}
// expose for testing
exports.authenticate = authenticate

View file

@ -0,0 +1,150 @@
describe("oidc", () => {
describe("strategyFactory", () => {
// mock passport strategy factory
jest.mock("@techpass/passport-openidconnect")
const mockStrategy = require("@techpass/passport-openidconnect").Strategy
// mock the response from .well-known/openid-configuration
const configUrlResponse = {
issuer: "mockIssuer",
authorization_endpoint: "mockAuthorizationEndpoint",
token_endpoint: "mockTokenEndpoint",
userinfo_endpoint: "mockUserInfoEndpoint"
}
// mock the request to retrieve the oidc configuration
jest.mock("node-fetch", () => jest.fn(() => (
{
ok: true,
json: async () => configUrlResponse
}
)))
const mockFetch = require("node-fetch")
it("should create successfully create an oidc strategy", async () => {
const oidc = require("../oidc")
// mock the config supplied to the strategy factory
config = {
configUrl: "http://someconfigurl",
clientID: "clientId",
clientSecret: "clientSecret",
}
callbackUrl = "http://somecallbackurl"
await oidc.strategyFactory(config, callbackUrl)
expect(mockFetch).toHaveBeenCalledWith("http://someconfigurl")
expect(mockStrategy).toHaveBeenCalledWith(
{
issuer: configUrlResponse.issuer,
authorizationURL: configUrlResponse.authorization_endpoint,
tokenURL: configUrlResponse.token_endpoint,
userInfoURL: configUrlResponse.userinfo_endpoint,
clientID: config.clientID,
clientSecret: config.clientSecret,
callbackURL: callbackUrl,
},
expect.anything()
)
})
})
describe("authenticate", () => {
afterEach(() => {
jest.clearAllMocks();
});
// mock third party common authentication
jest.mock("../third-party-common")
const authenticateThirdParty = require("../third-party-common").authenticateThirdParty
// parameters
const issuer = "mockIssuer"
const sub = "mockSub"
const profile = {
id: "mockId",
_json: {
email : "mock@budibase.com"
}
}
let jwtClaims = {}
const accessToken = "mockAccessToken"
const refreshToken = "mockRefreshToken"
const idToken = "mockIdToken"
const params = {}
// mock the passport callback
const mockDone = jest.fn()
const thirdPartyUser = {
provider: issuer,
providerType: "oidc",
userId: profile.id,
profile: profile,
email: "mock@budibase.com",
oauth2: {
accessToken: accessToken,
refreshToken: refreshToken,
},
}
async function doAuthenticate() {
const oidc = require("../oidc")
await oidc.authenticate(
issuer,
sub,
profile,
jwtClaims,
accessToken,
refreshToken,
idToken,
params,
mockDone
)
}
async function doTest() {
await doAuthenticate()
expect(authenticateThirdParty).toHaveBeenCalledWith(
thirdPartyUser,
false,
mockDone)
}
it("delegates authentication to third party common", async () => {
doTest()
})
it("uses JWT email to get email", async () => {
delete profile._json.email
jwtClaims = {
email : "mock@budibase.com"
}
doTest()
})
it("uses JWT username to get email", async () => {
delete profile._json.email
jwtClaims = {
preferred_username : "mock@budibase.com"
}
doTest()
})
it("uses JWT invalid username to get email", async () => {
delete profile._json.email
jwtClaims = {
preferred_username : "invalidUsername"
}
await expect(doAuthenticate()).rejects.toThrow("Could not determine user email from profile");
})
})
})