import 'mocha'; import { expect } from 'chai'; import { parseProjectInformation } from '@/application/Parser/ProjectInformationParser'; import { getProcessEnvironmentStub } from '@tests/unit/shared/Stubs/ProcessEnvironmentStub'; describe('ProjectInformationParser', () => { describe('parseProjectInformation', () => { it('parses expected repository version', () => { // arrange const expected = '0.11.3'; const env = getProcessEnvironmentStub(); env.VUE_APP_VERSION = expected; // act const info = parseProjectInformation(env); // assert const actual = info.version.toString(); expect(actual).to.be.equal(expected); }); it('parses expected repository url', () => { // arrange const expected = 'https://expected-repository.url'; const env = getProcessEnvironmentStub(); env.VUE_APP_REPOSITORY_URL = expected; // act const info = parseProjectInformation(env); // assert expect(info.repositoryUrl).to.be.equal(expected); }); it('parses expected name', () => { // arrange const expected = 'expected-app-name'; const env = getProcessEnvironmentStub(); env.VUE_APP_NAME = expected; // act const info = parseProjectInformation(env); // assert expect(info.name).to.be.equal(expected); }); it('parses expected homepage url', () => { // arrange const expected = 'https://expected.sexy'; const env = getProcessEnvironmentStub(); env.VUE_APP_HOMEPAGE_URL = expected; // act const info = parseProjectInformation(env); // assert expect(info.homepage).to.be.equal(expected); }); }); });