This repository has been archived by the owner on Apr 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.test.js
137 lines (118 loc) · 5.34 KB
/
index.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
const fs = require('fs');
const { execSync } = require('child_process');
const index = require('./index');
let testDir = '';
afterEach(() => {
execSync(`rm -rf ${ testDir }`);
});
describe('index.js', () => {
describe('sdfCreateProject', () => {
it('should throw an error if wrong project type', () => {
expect(() => index.sdfCreateProject('3', {})).toThrowError('Project type has to be either "1" or "2"!');
});
it('should throw an error if projectOptions is missing', () => {
expect(() => index.sdfCreateProject()).toThrowError('Parameter "projectOptions" is required!');
});
});
describe('sdfCreateAccountCustomizationProject', () => {
const accountCustomizationProject = 'AccountCustomizationProject';
it('should throw an error if name is missing', () => {
expect(() => index.sdfCreateAccountCustomizationProject()).toThrowError('Parameter "name" is required!');
});
it('should create an account customization project', () => {
const res = index.sdfCreateAccountCustomizationProject(accountCustomizationProject);
expect(res.type).toBe('ACCOUNTCUSTOMIZATION');
expect(res.dir).toContain(`/${ accountCustomizationProject }`);
expect(res.filebase).toContain(`/${ accountCustomizationProject }/FileCabinet/SuiteScripts`);
expect(res.name).toBe(accountCustomizationProject);
expect(res.values).toEqual({ name: accountCustomizationProject });
expect(fs.existsSync(res.dir)).toBe(true);
testDir = res.dir;
});
it('should create an account customization project in dir', () => {
const dir = '.dependencies';
const res = index.sdfCreateAccountCustomizationProject(accountCustomizationProject, dir);
expect(res.type).toBe('ACCOUNTCUSTOMIZATION');
expect(res.dir).toContain(`/${ dir }/${ accountCustomizationProject }`);
expect(res.filebase).toContain(`/${ dir }/${ accountCustomizationProject }/FileCabinet/SuiteScripts`);
expect(res.name).toBe(accountCustomizationProject);
expect(res.values).toEqual({ name: accountCustomizationProject });
expect(fs.existsSync(res.dir)).toBe(true);
testDir = res.dir;
});
});
describe('sdfCreateSuiteAppProject', () => {
const suiteAppProject = 'SuiteAppProject';
it('should throw an error if name is missing', () => {
expect(() => index.sdfCreateSuiteAppProject()).toThrowError('Parameter "name" is required!');
});
it('should throw an error if id is missing', () => {
expect(() => index.sdfCreateSuiteAppProject('name')).toThrowError('Parameter "id" is required!');
});
it('should throw an error if version is missing', () => {
expect(() => index.sdfCreateSuiteAppProject('name', 'id')).toThrowError('Parameter "version" is required!');
});
it('should throw an error if publisherId is missing', () => {
expect(() => index.sdfCreateSuiteAppProject('name', 'id', 'version')).toThrowError('Parameter "publisherId" is required!');
});
it('should create a suite app project', () => {
const res = index.sdfCreateSuiteAppProject(suiteAppProject, '666', '0.0.1', '123456');
expect(res.type).toBe('SUITEAPP');
expect(res.dir).toContain('/123456.666');
expect(res.filebase).toContain('/123456.666/FileCabinet/SuiteApps');
expect(res.name).toBe('123456.666');
expect(res.values).toEqual({
publisherId: '123456',
id: '666',
name: 'SuiteAppProject',
version: '0.0.1'
});
expect(fs.existsSync(res.dir)).toBe(true);
testDir = res.dir;
});
it('should create a suite app project in dir', () => {
const dir = '.dependencies';
const res = index.sdfCreateSuiteAppProject(suiteAppProject, '666', '0.0.1', '123456', dir);
expect(res.type).toBe('SUITEAPP');
expect(res.dir).toContain(`${ dir }/123456.666`);
expect(res.filebase).toContain(`${ dir }/123456.666/FileCabinet/SuiteApps`);
expect(res.name).toBe('123456.666');
expect(res.values).toEqual({
publisherId: '123456',
id: '666',
name: 'SuiteAppProject',
version: '0.0.1'
});
expect(fs.existsSync(res.dir)).toBe(true);
testDir = res.dir;
});
});
describe('sdf', () => {
xit('should spawn the correct command and fail', () => {
return index
.sdf('listfiles', 'PassWord', { p: 'project', path: 'path' })
.then(console.log) // eslint-disable-line no-console
.catch(err => {
expect(err.message).toContain('listfiles -p project -path path');
});
});
it('should fail if command does not exist', () => {
return index.sdf('foobar', 'PassWord', { p: 'project', path: 'path' }).catch(err => {
expect(err.message).toBe('Command "foobar" not available in sdf cli');
});
});
it('should throw an error if options are missing', () => {
expect(() => index.sdf('listfiles', 'PassWord')).toThrowError('Parameter "options" is required!');
});
it('should throw an error if password is missing', () => {
expect(() => index.sdf('listfiles')).toThrowError('Parameter "password" is required!');
});
});
describe('sdfcli', () => {
it('should call the sdfcli', () => {
const res = execSync('./sdfcli').toString();
expect(res).toContain('BUILD SUCCESS');
expect(res).toContain('SuiteCloud Development Framework CLI');
});
});
});