Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions __tests__/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,19 @@ describe('CLI', () => {
expect(await cli.exitCode).toBe(0);
});

it('generate mfa totp token', async () => {
const cli = new CLIMock(true)
.stdin(
`step('gen mfa totp', async () => {
const token = mfa.totp('FLIIOLP3IR3W');
expect(token.length).toBe(6);
})`
)
.args(['--inline', '--params', JSON.stringify(serverParams)])
.run();
expect(await cli.exitCode).toBe(0);
});

it('exit with 1 on syntax errors', async () => {
const cli = new CLIMock()
.stdin(`step('syntax error', async () => {}})`)
Expand Down
36 changes: 36 additions & 0 deletions __tests__/core/mfa.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/**
* MIT License
*
* Copyright (c) 2020-present, Elastic NV
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/

import { totp } from '../../src/core/mfa';

describe('MFA', () => {
it('generate TOTP', () => {
const token = totp("FLIIOLP3IR3W");
expect(token.length).toBe(6);
});
});



23 changes: 23 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
"http-proxy": "^1.18.1",
"kleur": "^4.1.5",
"micromatch": "^4.0.7",
"otpauth": "^9.3.2",
"pirates": "^4.0.5",
"playwright": "=1.47.0",
"playwright-chromium": "=1.47.0",
Expand Down
65 changes: 65 additions & 0 deletions src/core/mfa.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/**
* MIT License
*
* Copyright (c) 2020-present, Elastic NV
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
*/

import { TOTP } from "otpauth";

type TOTPOptions = {
/**
* Provider or Service the secret is associated with
*/
issuer?: string
/**
* Account Identifier.
* @default 'SyntheticsTOTP'
*/
label?: string
/**
* Include issuer prefix in label.
*/
issuerInLabel?: boolean
/**
* The encoded secret key used to generate the TOTP.
*/
secret?: string
/**
* The algorithm used to generate the TOTP.
* @default 'SHA1'
*/
algorithm?: string
/**
* Number of digits in the generated token.
* @default 6
*/
digits?: number
/**
* Validity period in seconds for the token.
* @default 30
*/
period?: number
};

export function totp(secret?: string, options: TOTPOptions = {}) {
return new TOTP({ label: "SyntheticsTOTP", secret, ...options }).generate();
}
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export {
after,
} from './core';
export { expect } from './core/expect';
export * as mfa from './core/mfa';

/**
* Export all the driver related types to be consumed
Expand Down
3 changes: 3 additions & 0 deletions src/loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import { CliArgs } from './common_types';
import { step, journey } from './core';
import { log } from './core/logger';
import { expect } from './core/expect';
import * as mfa from "./core/mfa";
import {
isDepInstalled,
isDirectory,
Expand Down Expand Up @@ -91,6 +92,7 @@ const loadInlineScript = source => {
'params',
'expect',
'request',
'mfa',
source
);
journey('inline', ({ page, context, browser, params, request }) => {
Expand All @@ -102,6 +104,7 @@ const loadInlineScript = source => {
params,
expect,
request,
mfa,
]);
});
};
Expand Down