Merge pull request #7393 from mozilla/hotfix/call-create-routes-correctly

fix(auth-server): Correct checks in createRoutes
This commit is contained in:
Ben Bangert 2021-02-01 14:09:34 -08:00 коммит произвёл GitHub
Родитель aef1e329bf e51876cd77
Коммит bfd99f8963
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 11 добавлений и 7 удалений

Просмотреть файл

@ -21,8 +21,7 @@ const createRoutes = (
push: any,
mailer: any,
profile: any,
stripeHelper: StripeHelper,
payPalHelper: PayPalHelper
stripeHelper: StripeHelper
) => {
const routes: ServerRoute[] = [];
@ -57,7 +56,7 @@ const createRoutes = (
)
);
}
if (stripeHelper && payPalHelper) {
if (stripeHelper && config.subscriptions.paypalNvpSigCredentials.enabled) {
routes.push(
...paypalRoutes(
log,

Просмотреть файл

@ -20,10 +20,13 @@ const MOCK_SCOPES = ['profile:email', SUBSCRIPTIONS_MANAGEMENT_SCOPE];
let log, customs, request, payPalHelper;
function runTest(routePath, requestOptions, ppHelper = null) {
function runTest(routePath, requestOptions) {
const config = {
subscriptions: {
enabled: true,
paypalNvpSigCredentials: {
enabled: true,
},
},
};
const db = mocks.mockDB({
@ -38,8 +41,7 @@ function runTest(routePath, requestOptions, ppHelper = null) {
{}, // push
{}, // mailer
{}, // profile
{}, // stripeHelper
ppHelper
{} // stripeHelper
);
const route = getRoute(routes, routePath, requestOptions.method || 'GET');
request = mocks.mockRequest(requestOptions);

Просмотреть файл

@ -199,6 +199,9 @@ describe('subscriptions stripeRoutes', () => {
managementClientId: MOCK_CLIENT_ID,
managementTokenTTL: MOCK_TTL,
stripeApiKey: 'sk_test_1234',
paypalNvpSigCredentials: {
enabled: true,
},
},
};

Просмотреть файл

@ -1851,7 +1851,7 @@ describe('email translations', () => {
);
assert.include(
emailConfig.subject,
'Добавлена альтернативная электронная почта'
'Добавлена дополнительная электронная почта'
);
// assert.include(emailConfig.html, 'Подсоединить другое устройство');
});