Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added unit tests for early access header config #1274

Merged
merged 4 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion packages/contentstack-config/src/interfaces/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export interface Region {
name: string;
cma: string;
cda: string;
uiHost: string;
uiHost?: string;
shafeeqd959 marked this conversation as resolved.
Show resolved Hide resolved
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
import { expect, should } from 'chai';
import { stub, spy } from 'sinon';
import { configHandler } from '@contentstack/cli-utilities';
import { cliux } from '@contentstack/cli-utilities';
import Conf from 'conf';
import { setEarlyAccessHeaderMockData } from '../mock/index';
import { interactive } from '../../../src/utils/index';

import GetEarlyAccessHeaderCommand from '../../../src/commands/config/get/early-access-header';
import SetEarlyAccessHeaderCommand from '../../../src/commands/config/set/early-access-header';
import RemoveEarlyAccessHeaderCommand from '../../../src/commands/config/remove/early-access-header';


const config = configHandler;
describe('Early access header command', function () {
let configSetStub;
let cliuxSuccessStub;
let configHandlerDeleteStub;
before(() => {
configSetStub = stub(configHandler, 'set').returns({} as Conf<Record<string, unknown>>);
cliuxSuccessStub = stub(cliux, 'success').callsFake(()=> {});
configHandlerDeleteStub = stub(configHandler, 'delete').resolves("");
});

after(() => {
// Restore the original method after each test
configSetStub.restore();
cliuxSuccessStub.restore();
configHandlerDeleteStub.restore();
});

it('Set early access header: with all flags, should be successful', async function () {
const args = [
'--header-alias',
setEarlyAccessHeaderMockData.flags.headerAlias,
'--header',
setEarlyAccessHeaderMockData.flags.header,
];
await SetEarlyAccessHeaderCommand.run(args);
expect(cliuxSuccessStub.calledOnce).to.be.true;
});

it('Set early access header: should prompt when header alias is not passed', async () => {
const askEarlyAccessHeaderAlias = stub(interactive, 'askEarlyAccessHeaderAlias').resolves(setEarlyAccessHeaderMockData.flags.headerAlias);
await SetEarlyAccessHeaderCommand.run(["--header", setEarlyAccessHeaderMockData.flags.header]);
expect(askEarlyAccessHeaderAlias.calledOnce).to.be.true;
askEarlyAccessHeaderAlias.restore();
});

it('Set early access header: should prompt when header is not passed', async () => {
const askEarlyAccessHeaderAlias = stub(interactive, 'askEarlyAccessHeaderValue').resolves(setEarlyAccessHeaderMockData.flags.header);
await SetEarlyAccessHeaderCommand.run(["--header-alias", setEarlyAccessHeaderMockData.flags.headerAlias]);
expect(askEarlyAccessHeaderAlias.calledOnce).to.be.true;
askEarlyAccessHeaderAlias.restore();
});

it('Get early access header: with all flags, should be successful', async function () {
const cliuxTableStub = stub(cliux, 'table');
await GetEarlyAccessHeaderCommand.run([]);
expect(cliuxTableStub.calledOnce).to.be.true;
cliuxTableStub.restore();
});
shafeeqd959 marked this conversation as resolved.
Show resolved Hide resolved

it('Remove early access header: with all flags, should be successful', async function () {
const configGetStub = stub(configHandler, 'get').resolves(setEarlyAccessHeaderMockData.flags.headerAlias);
const args = [
'--header-alias',
setEarlyAccessHeaderMockData.flags.headerAlias,
'--yes'
];
await RemoveEarlyAccessHeaderCommand.run(args);
expect(configHandlerDeleteStub.calledOnce).to.be.true;
configGetStub.restore();
});

it('Remove early access header: with only alias flag should prompt for confirmation', async function () {
const configGetStub = stub(configHandler, 'get').resolves(setEarlyAccessHeaderMockData.flags.headerAlias);
const confirmationStub = stub(interactive, 'askConfirmation').resolves(true);
const args = [
'--header-alias',
setEarlyAccessHeaderMockData.flags.headerAlias,
];
await RemoveEarlyAccessHeaderCommand.run(args);
expect(confirmationStub.calledOnce).to.be.true;
configGetStub.restore();
});

it('Remove early access header: without alias flag should prompt', async function () {
const configGetStub = stub(configHandler, 'get').resolves(setEarlyAccessHeaderMockData.flags.headerAlias);
const askHeaderAliasStub = stub(interactive, 'askEarlyAccessHeaderAlias').resolves(setEarlyAccessHeaderMockData.flags.headerAlias);
const args = [
"--yes"
];
await RemoveEarlyAccessHeaderCommand.run(args);
expect(askHeaderAliasStub.calledOnce).to.be.true;
configGetStub.restore();
});
});
7 changes: 7 additions & 0 deletions packages/contentstack-config/test/unit/mock/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ export const setConfigMockData = {
},
};

export const setEarlyAccessHeaderMockData = {
flags: {
headerAlias: 'taxonomy',
header: 'taxonomytestorg',
},
};

export const removeConfigMockData = {
flags: {
apiKey: 'abcd',
Expand Down
Loading