mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-23 20:00:15 +01:00
🔧 feat: Enhance role extraction logic in OpenID strategy to support multiple sources and improve error handling
This commit is contained in:
parent
b0ebc265a3
commit
81fe64da05
2 changed files with 136 additions and 153 deletions
|
|
@ -61,6 +61,10 @@ async function downloadImage(url, accessToken) {
|
||||||
*
|
*
|
||||||
* @function getFullName
|
* @function getFullName
|
||||||
* @param {Object} userinfo - The user information object from OpenID Connect
|
* @param {Object} userinfo - The user information object from OpenID Connect
|
||||||
|
* @param {string} [userinfo.given_name] - The user's first name
|
||||||
|
* @param {string} [userinfo.family_name] - The user's last name
|
||||||
|
* @param {string} [userinfo.username] - The user's username
|
||||||
|
* @param {string} [userinfo.email] - The user's email address
|
||||||
* @returns {string} The determined full name of the user
|
* @returns {string} The determined full name of the user
|
||||||
*/
|
*/
|
||||||
function getFullName(userinfo) {
|
function getFullName(userinfo) {
|
||||||
|
|
@ -121,50 +125,63 @@ function extractRolesFrom(obj, path) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retrieves user roles from either a token or the userinfo, based on configuration.
|
* Retrieves user roles from either a token, the userinfo object, or both.
|
||||||
|
*
|
||||||
|
* Supports three strategies based on the roleSource:
|
||||||
|
* - 'token': Extract roles from the token (access or id token), fallback to userinfo if extraction fails.
|
||||||
|
* - 'userinfo': Extract roles solely from the userinfo object.
|
||||||
|
* - 'both': Extract roles from both token and userinfo and merge them.
|
||||||
|
*
|
||||||
|
* Also supports encrypted tokens by falling back to userinfo if the token is not JWT-decodable.
|
||||||
*
|
*
|
||||||
* @function getUserRoles
|
* @function getUserRoles
|
||||||
* @param {import('openid-client').TokenSet} tokenSet
|
* @param {import('openid-client').TokenSet} tokenSet
|
||||||
* @param {Object} userinfo
|
* @param {Object} userinfo
|
||||||
* @param {string} rolePath - Dot-notation path to where roles are stored
|
* @param {string} rolePath - Dot-notation path to where roles are stored
|
||||||
* @param {'access'|'id'} tokenKind - Which token to parse for roles
|
* @param {'access'|'id'} tokenKind - Which token to parse for roles
|
||||||
* @param {'token'|'userinfo'} roleSource - Whether to start with token or userinfo
|
* @param {'token'|'userinfo'|'both'} roleSource - Source of roles for extraction
|
||||||
* @returns {string[]} Array of roles, possibly empty
|
* @returns {string[]} Array of roles, possibly empty
|
||||||
*/
|
*/
|
||||||
function getUserRoles(tokenSet, userinfo, rolePath, tokenKind, roleSource) {
|
function getUserRoles(tokenSet, userinfo, rolePath, tokenKind, roleSource) {
|
||||||
if (!tokenSet) {
|
if (!tokenSet) {
|
||||||
return [];
|
return extractRolesFrom(userinfo, rolePath);
|
||||||
}
|
}
|
||||||
|
|
||||||
// If roles should come from userinfo first
|
|
||||||
if (roleSource === 'userinfo') {
|
if (roleSource === 'userinfo') {
|
||||||
const roles = extractRolesFrom(userinfo, rolePath);
|
const roles = extractRolesFrom(userinfo, rolePath);
|
||||||
if (!roles.length) {
|
if (!roles.length) {
|
||||||
logger.warn(`[openidStrategy] Key '${rolePath}' not found in userinfo.`);
|
logger.warn(`[openidStrategy] Key '${rolePath}' not found in userinfo.`);
|
||||||
}
|
}
|
||||||
return roles;
|
return roles;
|
||||||
}
|
} else if (roleSource === 'both') {
|
||||||
|
let tokenRoles = [];
|
||||||
// Otherwise, try from the token
|
|
||||||
let tokenToDecode;
|
|
||||||
try {
|
try {
|
||||||
tokenToDecode = tokenKind === 'access' ? tokenSet.access_token : tokenSet.id_token;
|
let tokenToDecode = tokenKind === 'access' ? tokenSet.access_token : tokenSet.id_token;
|
||||||
|
if (tokenToDecode && tokenToDecode.includes('.')) {
|
||||||
|
const tokenData = jwtDecode(tokenToDecode);
|
||||||
|
tokenRoles = extractRolesFrom(tokenData, rolePath);
|
||||||
|
} else {
|
||||||
|
logger.warn(
|
||||||
|
'[openidStrategy] Token is not a valid JWT for decoding, skipping token roles extraction.',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
logger.error(`[openidStrategy] Failed to decode ${tokenKind} token: ${err}.`);
|
||||||
|
}
|
||||||
|
const userinfoRoles = extractRolesFrom(userinfo, rolePath);
|
||||||
|
const combinedRoles = Array.from(new Set([...tokenRoles, ...userinfoRoles]));
|
||||||
|
if (!combinedRoles.length) {
|
||||||
|
logger.warn(`[openidStrategy] Key '${rolePath}' not found in both token and userinfo.`);
|
||||||
|
}
|
||||||
|
return combinedRoles;
|
||||||
|
} else {
|
||||||
|
// default 'token' strategy
|
||||||
|
try {
|
||||||
|
let tokenToDecode = tokenKind === 'access' ? tokenSet.access_token : tokenSet.id_token;
|
||||||
if (!tokenToDecode || !tokenToDecode.includes('.')) {
|
if (!tokenToDecode || !tokenToDecode.includes('.')) {
|
||||||
throw new Error('Token is not a valid JWT for decoding.');
|
throw new Error('Token is not a valid JWT for decoding.');
|
||||||
}
|
}
|
||||||
} catch (err) {
|
const tokenData = jwtDecode(tokenToDecode);
|
||||||
logger.error(`[openidStrategy] ${err}. Falling back to userinfo for role extraction.`);
|
|
||||||
return extractRolesFrom(userinfo, rolePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
let tokenData;
|
|
||||||
try {
|
|
||||||
tokenData = jwtDecode(tokenToDecode);
|
|
||||||
} catch (err) {
|
|
||||||
logger.error(`[openidStrategy] Failed to decode ${tokenKind} token: ${err}. Using userinfo.`);
|
|
||||||
return extractRolesFrom(userinfo, rolePath);
|
|
||||||
}
|
|
||||||
|
|
||||||
const roles = extractRolesFrom(tokenData, rolePath);
|
const roles = extractRolesFrom(tokenData, rolePath);
|
||||||
if (!roles.length) {
|
if (!roles.length) {
|
||||||
logger.warn(
|
logger.warn(
|
||||||
|
|
@ -173,6 +190,11 @@ function getUserRoles(tokenSet, userinfo, rolePath, tokenKind, roleSource) {
|
||||||
return extractRolesFrom(userinfo, rolePath);
|
return extractRolesFrom(userinfo, rolePath);
|
||||||
}
|
}
|
||||||
return roles;
|
return roles;
|
||||||
|
} catch (err) {
|
||||||
|
logger.error(`[openidStrategy] ${err}. Falling back to userinfo for role extraction.`);
|
||||||
|
return extractRolesFrom(userinfo, rolePath);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -236,7 +258,7 @@ async function setupOpenId() {
|
||||||
const requiredRole = process.env.OPENID_REQUIRED_ROLE;
|
const requiredRole = process.env.OPENID_REQUIRED_ROLE;
|
||||||
const rolePath = process.env.OPENID_REQUIRED_ROLE_PARAMETER_PATH;
|
const rolePath = process.env.OPENID_REQUIRED_ROLE_PARAMETER_PATH;
|
||||||
const tokenKind = process.env.OPENID_REQUIRED_ROLE_TOKEN_KIND || 'id'; // 'id'|'access'
|
const tokenKind = process.env.OPENID_REQUIRED_ROLE_TOKEN_KIND || 'id'; // 'id'|'access'
|
||||||
const roleSource = process.env.OPENID_REQUIRED_ROLE_SOURCE || 'token'; // 'token'|'userinfo'
|
const roleSource = process.env.OPENID_REQUIRED_ROLE_SOURCE || 'both'; // 'token'|'userinfo'|'both'
|
||||||
|
|
||||||
// Create the Passport strategy using the new type-correct instantiation and toggle for PKCE
|
// Create the Passport strategy using the new type-correct instantiation and toggle for PKCE
|
||||||
const openidStrategy = new OpenIDStrategy(
|
const openidStrategy = new OpenIDStrategy(
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ jest.mock('~/server/utils/crypto', () => ({
|
||||||
hashToken: jest.fn().mockResolvedValue('hashed-token'),
|
hashToken: jest.fn().mockResolvedValue('hashed-token'),
|
||||||
}));
|
}));
|
||||||
jest.mock('~/server/utils', () => ({
|
jest.mock('~/server/utils', () => ({
|
||||||
isEnabled: jest.fn(() => false), // default to false, override per test if needed
|
isEnabled: jest.fn(() => false), // default to false; override per test if needed
|
||||||
}));
|
}));
|
||||||
jest.mock('~/config', () => ({
|
jest.mock('~/config', () => ({
|
||||||
logger: {
|
logger: {
|
||||||
|
|
@ -33,8 +33,9 @@ jest.mock('~/config', () => ({
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Mock Issuer.discover so that setupOpenId gets a fake issuer and client
|
// Update Issuer.discover mock so that the returned issuer has an 'issuer' property.
|
||||||
Issuer.discover = jest.fn().mockResolvedValue({
|
Issuer.discover = jest.fn().mockResolvedValue({
|
||||||
|
issuer: 'https://fake-issuer.com',
|
||||||
id_token_signing_alg_values_supported: ['RS256'],
|
id_token_signing_alg_values_supported: ['RS256'],
|
||||||
Client: jest.fn().mockImplementation((clientMetadata) => {
|
Client: jest.fn().mockImplementation((clientMetadata) => {
|
||||||
return {
|
return {
|
||||||
|
|
@ -43,7 +44,7 @@ Issuer.discover = jest.fn().mockResolvedValue({
|
||||||
}),
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
// To capture the verify callback from the strategy, we grab it from the mock constructor
|
// To capture the verify callback from the strategy, we grab it from the mock constructor.
|
||||||
let verifyCallback;
|
let verifyCallback;
|
||||||
OpenIDStrategy.mockImplementation((options, verify) => {
|
OpenIDStrategy.mockImplementation((options, verify) => {
|
||||||
verifyCallback = verify;
|
verifyCallback = verify;
|
||||||
|
|
@ -51,7 +52,7 @@ OpenIDStrategy.mockImplementation((options, verify) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('setupOpenId', () => {
|
describe('setupOpenId', () => {
|
||||||
// Helper to wrap the verify callback in a promise
|
// Helper to wrap the verify callback in a promise.
|
||||||
const validate = (tokenset, userinfo) =>
|
const validate = (tokenset, userinfo) =>
|
||||||
new Promise((resolve, reject) => {
|
new Promise((resolve, reject) => {
|
||||||
verifyCallback(tokenset, userinfo, (err, user, details) => {
|
verifyCallback(tokenset, userinfo, (err, user, details) => {
|
||||||
|
|
@ -62,7 +63,7 @@ describe('setupOpenId', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Default tokenset: tokens now include a period to simulate a JWT
|
// Default tokenset: tokens include a period to simulate a JWT.
|
||||||
const validTokenSet = {
|
const validTokenSet = {
|
||||||
id_token: 'header.payload.signature',
|
id_token: 'header.payload.signature',
|
||||||
access_token: 'header.payload.signature',
|
access_token: 'header.payload.signature',
|
||||||
|
|
@ -81,10 +82,10 @@ describe('setupOpenId', () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
// Clear previous mock calls and reset implementations
|
// Clear previous mock calls and reset implementations.
|
||||||
jest.clearAllMocks();
|
jest.clearAllMocks();
|
||||||
|
|
||||||
// Reset environment variables needed by the strategy
|
// Reset environment variables needed by the strategy.
|
||||||
process.env.OPENID_ISSUER = 'https://fake-issuer.com';
|
process.env.OPENID_ISSUER = 'https://fake-issuer.com';
|
||||||
process.env.OPENID_CLIENT_ID = 'fake_client_id';
|
process.env.OPENID_CLIENT_ID = 'fake_client_id';
|
||||||
process.env.OPENID_CLIENT_SECRET = 'fake_client_secret';
|
process.env.OPENID_CLIENT_SECRET = 'fake_client_secret';
|
||||||
|
|
@ -99,23 +100,24 @@ describe('setupOpenId', () => {
|
||||||
delete process.env.OPENID_NAME_CLAIM;
|
delete process.env.OPENID_NAME_CLAIM;
|
||||||
delete process.env.PROXY;
|
delete process.env.PROXY;
|
||||||
delete process.env.OPENID_USE_PKCE;
|
delete process.env.OPENID_USE_PKCE;
|
||||||
|
delete process.env.OPENID_SET_FIRST_SUPPORTED_ALGORITHM;
|
||||||
|
|
||||||
// By default, jwtDecode returns a token that includes the required role.
|
// By default, jwtDecode returns a token that includes the required role.
|
||||||
jwtDecode.mockReturnValue({
|
jwtDecode.mockReturnValue({
|
||||||
roles: ['requiredRole'],
|
roles: ['requiredRole'],
|
||||||
});
|
});
|
||||||
|
|
||||||
// By default, assume that no user is found, so createUser will be called
|
// By default, assume that no user is found so that createUser will be called.
|
||||||
findUser.mockResolvedValue(null);
|
findUser.mockResolvedValue(null);
|
||||||
createUser.mockImplementation(async (userData) => {
|
createUser.mockImplementation(async (userData) => {
|
||||||
// simulate created user with an _id property
|
// Simulate created user with an _id property.
|
||||||
return { _id: 'newUserId', ...userData };
|
return { _id: 'newUserId', ...userData };
|
||||||
});
|
});
|
||||||
updateUser.mockImplementation(async (id, userData) => {
|
updateUser.mockImplementation(async (id, userData) => {
|
||||||
return { _id: id, ...userData };
|
return { _id: id, ...userData };
|
||||||
});
|
});
|
||||||
|
|
||||||
// For image download, simulate a successful response
|
// For image download, simulate a successful response.
|
||||||
const fakeBuffer = Buffer.from('fake image');
|
const fakeBuffer = Buffer.from('fake image');
|
||||||
const fakeResponse = {
|
const fakeResponse = {
|
||||||
ok: true,
|
ok: true,
|
||||||
|
|
@ -123,18 +125,13 @@ describe('setupOpenId', () => {
|
||||||
};
|
};
|
||||||
fetch.mockResolvedValue(fakeResponse);
|
fetch.mockResolvedValue(fakeResponse);
|
||||||
|
|
||||||
// Call setupOpenId so that passport.use gets called
|
// (Re)initialize the strategy with current env settings.
|
||||||
await setupOpenId();
|
await setupOpenId();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should create a new user with correct username when username claim exists', async () => {
|
it('should create a new user with correct username when username claim exists', async () => {
|
||||||
// Arrange – our userinfo already has username 'flast'
|
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert
|
|
||||||
expect(user.username).toBe(userinfo.username);
|
expect(user.username).toBe(userinfo.username);
|
||||||
expect(createUser).toHaveBeenCalledWith(
|
expect(createUser).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
|
|
@ -150,16 +147,10 @@ describe('setupOpenId', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should use given_name as username when username claim is missing', async () => {
|
it('should use given_name as username when username claim is missing', async () => {
|
||||||
// Arrange – remove username from userinfo
|
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
delete userinfo.username;
|
delete userinfo.username;
|
||||||
// Expect the username to be the given name
|
|
||||||
const expectUsername = userinfo.given_name;
|
const expectUsername = userinfo.given_name;
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert
|
|
||||||
expect(user.username).toBe(expectUsername);
|
expect(user.username).toBe(expectUsername);
|
||||||
expect(createUser).toHaveBeenCalledWith(
|
expect(createUser).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({ username: expectUsername }),
|
expect.objectContaining({ username: expectUsername }),
|
||||||
|
|
@ -169,16 +160,11 @@ describe('setupOpenId', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should use email as username when username and given_name are missing', async () => {
|
it('should use email as username when username and given_name are missing', async () => {
|
||||||
// Arrange – remove username and given_name
|
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
delete userinfo.username;
|
delete userinfo.username;
|
||||||
delete userinfo.given_name;
|
delete userinfo.given_name;
|
||||||
const expectUsername = userinfo.email;
|
const expectUsername = userinfo.email;
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert
|
|
||||||
expect(user.username).toBe(expectUsername);
|
expect(user.username).toBe(expectUsername);
|
||||||
expect(createUser).toHaveBeenCalledWith(
|
expect(createUser).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({ username: expectUsername }),
|
expect.objectContaining({ username: expectUsername }),
|
||||||
|
|
@ -188,14 +174,10 @@ describe('setupOpenId', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should override username with OPENID_USERNAME_CLAIM when set', async () => {
|
it('should override username with OPENID_USERNAME_CLAIM when set', async () => {
|
||||||
// Arrange – set OPENID_USERNAME_CLAIM so that the sub claim is used
|
|
||||||
process.env.OPENID_USERNAME_CLAIM = 'sub';
|
process.env.OPENID_USERNAME_CLAIM = 'sub';
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
|
await setupOpenId();
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – username should equal the sub (converted as-is)
|
|
||||||
expect(user.username).toBe(userinfo.sub);
|
expect(user.username).toBe(userinfo.sub);
|
||||||
expect(createUser).toHaveBeenCalledWith(
|
expect(createUser).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({ username: userinfo.sub }),
|
expect.objectContaining({ username: userinfo.sub }),
|
||||||
|
|
@ -205,31 +187,21 @@ describe('setupOpenId', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should set the full name correctly when given_name and family_name exist', async () => {
|
it('should set the full name correctly when given_name and family_name exist', async () => {
|
||||||
// Arrange
|
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
const expectedFullName = `${userinfo.given_name} ${userinfo.family_name}`;
|
const expectedFullName = `${userinfo.given_name} ${userinfo.family_name}`;
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert
|
|
||||||
expect(user.name).toBe(expectedFullName);
|
expect(user.name).toBe(expectedFullName);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should override full name with OPENID_NAME_CLAIM when set', async () => {
|
it('should override full name with OPENID_NAME_CLAIM when set', async () => {
|
||||||
// Arrange – use the name claim as the full name
|
|
||||||
process.env.OPENID_NAME_CLAIM = 'name';
|
process.env.OPENID_NAME_CLAIM = 'name';
|
||||||
const userinfo = { ...baseUserinfo, name: 'Custom Name' };
|
const userinfo = { ...baseUserinfo, name: 'Custom Name' };
|
||||||
|
await setupOpenId();
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert
|
|
||||||
expect(user.name).toBe('Custom Name');
|
expect(user.name).toBe('Custom Name');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should update an existing user on login', async () => {
|
it('should update an existing user on login', async () => {
|
||||||
// Arrange – simulate that a user already exists
|
|
||||||
const existingUser = {
|
const existingUser = {
|
||||||
_id: 'existingUserId',
|
_id: 'existingUserId',
|
||||||
provider: 'local',
|
provider: 'local',
|
||||||
|
|
@ -244,13 +216,8 @@ describe('setupOpenId', () => {
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
});
|
});
|
||||||
|
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
|
|
||||||
// Act
|
|
||||||
await validate(validTokenSet, userinfo);
|
await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – updateUser should be called and the user object updated
|
|
||||||
expect(updateUser).toHaveBeenCalledWith(
|
expect(updateUser).toHaveBeenCalledWith(
|
||||||
existingUser._id,
|
existingUser._id,
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
|
|
@ -263,142 +230,108 @@ describe('setupOpenId', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should enforce the required role and reject login if missing', async () => {
|
it('should enforce the required role and reject login if missing', async () => {
|
||||||
// Arrange – simulate a token without the required role.
|
jwtDecode.mockReturnValue({ roles: ['SomeOtherRole'] });
|
||||||
jwtDecode.mockReturnValue({
|
|
||||||
roles: ['SomeOtherRole'],
|
|
||||||
});
|
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user, details } = await validate(validTokenSet, userinfo);
|
const { user, details } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – verify that the strategy rejects login
|
|
||||||
expect(user).toBe(false);
|
expect(user).toBe(false);
|
||||||
expect(details.message).toBe('You must have the "requiredRole" role to log in.');
|
expect(details.message).toBe('You must have the "requiredRole" role to log in.');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should attempt to download and save the avatar if picture is provided', async () => {
|
it('should attempt to download and save the avatar if picture is provided', async () => {
|
||||||
// Arrange – ensure userinfo contains a picture URL
|
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – verify that download was attempted and the avatar field was set via updateUser
|
|
||||||
expect(fetch).toHaveBeenCalled();
|
expect(fetch).toHaveBeenCalled();
|
||||||
expect(user.avatar).toBe('/fake/path/to/avatar.png');
|
expect(user.avatar).toBe('/fake/path/to/avatar.png');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not attempt to download avatar if picture is not provided', async () => {
|
it('should not attempt to download avatar if picture is not provided', async () => {
|
||||||
// Arrange – remove picture
|
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
delete userinfo.picture;
|
delete userinfo.picture;
|
||||||
|
|
||||||
// Act
|
|
||||||
await validate(validTokenSet, userinfo);
|
await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – fetch should not be called and avatar should remain undefined or empty
|
|
||||||
expect(fetch).not.toHaveBeenCalled();
|
expect(fetch).not.toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should fallback to userinfo roles if the id_token is invalid (missing a period)', async () => {
|
it('should fallback to userinfo roles if the id_token is invalid (missing a period)', async () => {
|
||||||
// Arrange – simulate an invalid id_token and ensure userinfo.roles contains the required role
|
|
||||||
const invalidTokenSet = { ...validTokenSet, id_token: 'invalidtoken' };
|
const invalidTokenSet = { ...validTokenSet, id_token: 'invalidtoken' };
|
||||||
const userinfo = { ...baseUserinfo, roles: ['requiredRole'] };
|
const userinfo = { ...baseUserinfo, roles: ['requiredRole'] };
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(invalidTokenSet, userinfo);
|
const { user } = await validate(invalidTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – login should succeed using roles from userinfo
|
|
||||||
expect(user).toBeDefined();
|
expect(user).toBeDefined();
|
||||||
expect(createUser).toHaveBeenCalled();
|
expect(createUser).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should handle downloadImage failure gracefully and not set an avatar', async () => {
|
it('should handle downloadImage failure gracefully and not set an avatar', async () => {
|
||||||
// Arrange – force fetch to reject, simulating a network error for image download
|
|
||||||
fetch.mockRejectedValue(new Error('network error'));
|
fetch.mockRejectedValue(new Error('network error'));
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – verify that fetch was called but avatar is not updated
|
|
||||||
expect(fetch).toHaveBeenCalled();
|
expect(fetch).toHaveBeenCalled();
|
||||||
expect(user.avatar).toBeUndefined();
|
expect(user.avatar).toBeUndefined();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should allow login if no required role is specified', async () => {
|
it('should allow login if no required role is specified', async () => {
|
||||||
// Arrange – remove role requirements
|
|
||||||
delete process.env.OPENID_REQUIRED_ROLE;
|
delete process.env.OPENID_REQUIRED_ROLE;
|
||||||
delete process.env.OPENID_REQUIRED_ROLE_PARAMETER_PATH;
|
delete process.env.OPENID_REQUIRED_ROLE_PARAMETER_PATH;
|
||||||
// Ensure jwtDecode returns empty roles (should not matter now)
|
|
||||||
jwtDecode.mockReturnValue({});
|
jwtDecode.mockReturnValue({});
|
||||||
const userinfo = { ...baseUserinfo };
|
const userinfo = { ...baseUserinfo };
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – login should succeed without checking for roles
|
|
||||||
expect(user).toBeDefined();
|
expect(user).toBeDefined();
|
||||||
expect(createUser).toHaveBeenCalled();
|
expect(createUser).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should use roles from userinfo when OPENID_REQUIRED_ROLE_SOURCE is set to "userinfo"', async () => {
|
it('should use roles from userinfo when OPENID_REQUIRED_ROLE_SOURCE is set to "userinfo"', async () => {
|
||||||
// Arrange – force roleSource to be userinfo and have jwtDecode return empty roles
|
|
||||||
process.env.OPENID_REQUIRED_ROLE_SOURCE = 'userinfo';
|
process.env.OPENID_REQUIRED_ROLE_SOURCE = 'userinfo';
|
||||||
jwtDecode.mockReturnValue({});
|
jwtDecode.mockReturnValue({});
|
||||||
const userinfo = { ...baseUserinfo, roles: ['requiredRole'] };
|
const userinfo = { ...baseUserinfo, roles: ['requiredRole'] };
|
||||||
|
await setupOpenId();
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
|
||||||
// Assert – login should succeed because roles are taken from userinfo
|
|
||||||
expect(user).toBeDefined();
|
expect(user).toBeDefined();
|
||||||
expect(createUser).toHaveBeenCalled();
|
expect(createUser).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should call done with error when createUser fails', async () => {
|
it('should merge roles from both token and userinfo when OPENID_REQUIRED_ROLE_SOURCE is "both"', async () => {
|
||||||
// Arrange – simulate createUser throwing an error
|
process.env.OPENID_REQUIRED_ROLE_SOURCE = 'both';
|
||||||
const errorMessage = 'createUser failed';
|
jwtDecode.mockReturnValue({ roles: ['extraRole'] });
|
||||||
createUser.mockImplementation(async () => {
|
const userinfo = { ...baseUserinfo, roles: ['requiredRole'] };
|
||||||
throw new Error(errorMessage);
|
await setupOpenId();
|
||||||
});
|
|
||||||
const userinfo = { ...baseUserinfo };
|
|
||||||
|
|
||||||
// Act & Assert – verify that the verify callback rejects with the error
|
|
||||||
await expect(validate(validTokenSet, userinfo)).rejects.toThrow(errorMessage);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should not download avatar if existing user has avatar marked as manual', async () => {
|
|
||||||
// Arrange – simulate an existing user with a manually set avatar
|
|
||||||
const existingUser = {
|
|
||||||
_id: 'existingUserId',
|
|
||||||
provider: 'local',
|
|
||||||
email: baseUserinfo.email,
|
|
||||||
openidId: '',
|
|
||||||
username: '',
|
|
||||||
name: '',
|
|
||||||
avatar: 'some/path?manual=true',
|
|
||||||
};
|
|
||||||
findUser.mockResolvedValue(existingUser);
|
|
||||||
const userinfo = { ...baseUserinfo };
|
|
||||||
|
|
||||||
// Act
|
|
||||||
const { user } = await validate(validTokenSet, userinfo);
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
expect(user).toBeDefined();
|
||||||
|
expect(createUser).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
// Assert – fetch should not be called since avatar is manually set
|
it('should fall back to userinfo roles when token decode fails and roleSource is "both"', async () => {
|
||||||
expect(fetch).not.toHaveBeenCalled();
|
process.env.OPENID_REQUIRED_ROLE_SOURCE = 'both';
|
||||||
expect(updateUser).toHaveBeenCalledWith(
|
jwtDecode.mockImplementation(() => {
|
||||||
existingUser._id,
|
throw new Error('Decode error');
|
||||||
expect.objectContaining({ avatar: existingUser.avatar }),
|
});
|
||||||
);
|
const userinfo = { ...baseUserinfo, roles: ['requiredRole'] };
|
||||||
expect(user.avatar).toBe(existingUser.avatar);
|
await setupOpenId();
|
||||||
|
const { user } = await validate(validTokenSet, userinfo);
|
||||||
|
expect(user).toBeDefined();
|
||||||
|
expect(createUser).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should merge roles from both token and userinfo when token is invalid and roleSource is "both"', async () => {
|
||||||
|
process.env.OPENID_REQUIRED_ROLE_SOURCE = 'both';
|
||||||
|
const invalidTokenSet = { ...validTokenSet, id_token: 'invalidtoken' };
|
||||||
|
const userinfo = { ...baseUserinfo, roles: ['requiredRole'] };
|
||||||
|
await setupOpenId();
|
||||||
|
const { user } = await validate(invalidTokenSet, userinfo);
|
||||||
|
expect(user).toBeDefined();
|
||||||
|
expect(createUser).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject login if merged roles from both token and userinfo do not include required role', async () => {
|
||||||
|
process.env.OPENID_REQUIRED_ROLE_SOURCE = 'both';
|
||||||
|
jwtDecode.mockReturnValue({ roles: ['SomeOtherRole'] });
|
||||||
|
const userinfo = { ...baseUserinfo, roles: ['AnotherRole'] };
|
||||||
|
await setupOpenId();
|
||||||
|
const { user, details } = await validate(validTokenSet, userinfo);
|
||||||
|
expect(user).toBe(false);
|
||||||
|
expect(details.message).toBe('You must have the "requiredRole" role to log in.');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should pass usePKCE true and set code_challenge_method in params when OPENID_USE_PKCE is "true"', async () => {
|
it('should pass usePKCE true and set code_challenge_method in params when OPENID_USE_PKCE is "true"', async () => {
|
||||||
process.env.OPENID_USE_PKCE = 'true';
|
process.env.OPENID_USE_PKCE = 'true';
|
||||||
await setupOpenId();
|
await setupOpenId();
|
||||||
// Get the options from the last call of OpenIDStrategy
|
|
||||||
const callOptions = OpenIDStrategy.mock.calls[OpenIDStrategy.mock.calls.length - 1][0];
|
const callOptions = OpenIDStrategy.mock.calls[OpenIDStrategy.mock.calls.length - 1][0];
|
||||||
expect(callOptions.usePKCE).toBe(true);
|
expect(callOptions.usePKCE).toBe(true);
|
||||||
expect(callOptions.params.code_challenge_method).toBe('S256');
|
expect(callOptions.params.code_challenge_method).toBe('S256');
|
||||||
|
|
@ -419,4 +352,32 @@ describe('setupOpenId', () => {
|
||||||
expect(callOptions.usePKCE).toBe(false);
|
expect(callOptions.usePKCE).toBe(false);
|
||||||
expect(callOptions.params.code_challenge_method).toBeUndefined();
|
expect(callOptions.params.code_challenge_method).toBeUndefined();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('should set id_token_signed_response_alg if OPENID_SET_FIRST_SUPPORTED_ALGORITHM is enabled', async () => {
|
||||||
|
process.env.OPENID_SET_FIRST_SUPPORTED_ALGORITHM = 'true';
|
||||||
|
// Override isEnabled so that it returns true.
|
||||||
|
const { isEnabled } = require('~/server/utils');
|
||||||
|
isEnabled.mockReturnValue(true);
|
||||||
|
await setupOpenId();
|
||||||
|
const callOptions = OpenIDStrategy.mock.calls[OpenIDStrategy.mock.calls.length - 1][0];
|
||||||
|
expect(callOptions.client.metadata.id_token_signed_response_alg).toBe('RS256');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should use access token when OPENID_REQUIRED_ROLE_TOKEN_KIND is set to "access"', async () => {
|
||||||
|
process.env.OPENID_REQUIRED_ROLE_TOKEN_KIND = 'access';
|
||||||
|
// Reinitialize strategy so that the new token kind is used.
|
||||||
|
await setupOpenId();
|
||||||
|
jwtDecode.mockClear();
|
||||||
|
jwtDecode.mockReturnValue({ roles: ['requiredRole'] });
|
||||||
|
const userinfo = { ...baseUserinfo };
|
||||||
|
await validate(validTokenSet, userinfo);
|
||||||
|
expect(jwtDecode).toHaveBeenCalledWith(validTokenSet.access_token);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should use proxy agent if PROXY is provided', async () => {
|
||||||
|
process.env.PROXY = 'http://fake-proxy.com';
|
||||||
|
await setupOpenId();
|
||||||
|
const { logger } = require('~/config');
|
||||||
|
expect(logger.info).toHaveBeenCalledWith(`[openidStrategy] Using proxy: ${process.env.PROXY}`);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue