-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathspec.js
241 lines (203 loc) · 7.58 KB
/
spec.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
// spec.js
// ------------------------------------------------------------------
//
// Tests for spec operations.
//
// Copyright 2019 Google LLC.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
/* global describe, faker, it, before */
var common = require('./common');
describe('Spec', function() {
const resourceDir = "./test/resources/specs",
path = require('path'),
util = require('util'),
fs = require('fs');
this.timeout(common.testTimeout);
this.slow(common.slowThreshold);
common.connectApigee(function(org){
const num = faker.random.number(),
word = faker.lorem.word(),
specName1 = `apigee-edge-js-test-${word}-${num}-1`,
specContent1 = `content-goes-here-${word}-${num}`,
specName2 = `apigee-edge-js-test-${word}-${num}-2`;
let specfiles, specContent2;
function next(done){
fs.readdir(path.resolve(resourceDir), function(e, items) {
assert.isNull(e, "error getting specs: " + util.format(e));
specfiles = items
.map(item => { return {item, fq:path.resolve( path.join(resourceDir, item)) };})
.filter(item => fs.statSync(item.fq).isFile());
done();
});
}
before(function(done) {
let numDoneDeleted = 0;
org.specs.list(function(e, result) {
assert.isNull(e, "error listing: " + util.format(e));
result = result.filter( x => x.startsWith('apigee-edge-js-test-'));
if (result.length > 1) {
result.forEach( name => {
org.specs.del({name}, function(e, result){
assert.isNull(e, "error deleting: " + util.format(e));
numDoneDeleted++;
if (numDoneDeleted == result.length) {
next(done);
}
});
});
}
else {
next(done);
}
});
});
describe('create', function() {
it('should create a spec from a string', function(done) {
org.specs.create({name:specName1, content: specContent1}, function(e, result){
assert.isNull(e, "error creating: " + util.format(e));
done();
});
});
it('should create a spec from a file', function(done) {
org.specs.create({name:specName2, filename: specfiles[0].fq}, function(e, result){
assert.isNull(e, "error creating: " + util.format(e));
done();
});
});
it('should fail to create a spec with no name', function(done) {
org.specs.create({notname:"anything"}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
it('should fail to create a spec with an empty name', function(done) {
org.specs.create({name:''}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
it('should fail to create a spec with no content', function(done) {
org.specs.create({name:specName1 + ".foo"}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
});
describe('get', function() {
it('should get spec home', function(done) {
org.specs.getHome(function(e, result){
assert.isNull(e, "error getting: " + util.format(e));
//console.log(JSON.stringify(result));
assert.isNotNull(result.contents);
assert.isAtLeast(result.contents.length, 1, "zero results");
done();
});
});
it('should list specs', function(done) {
org.specs.list(function(e, result){
assert.isNull(e, "error getting: " + util.format(e));
assert.isAtLeast(result.length, 1, "zero results");
done();
});
});
it('should get content for a spec by name', function(done) {
org.specs.get({name:specName1}, function(e, result){
assert.isNull(e, "unexpected error");
assert.equal(result, specContent1);
done();
});
});
it('should get content for a spec by name', function(done) {
org.specs.get({name:specName2}, function(e, result){
assert.isNull(e, "unexpected error");
assert.equal(result, fs.readFileSync(specfiles[0].fq, 'utf8'));
done();
});
});
});
describe('getMeta', function() {
it('should get metadata for a spec by name', function(done) {
org.specs.getMeta({name:specName1}, function(e, result){
assert.isNull(e, "unexpected error");
done();
});
});
it('should fail to get metadata for a non-existent spec by name', function(done) {
org.specs.getMeta({name:faker.random.alphaNumeric(22)}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
});
describe('update', function() {
it('should update a spec with string content', function(done) {
org.specs.update({name:specName1, content: "updated"}, function(e, result){
assert.isNull(e, "error updating: " + util.format(e));
done();
});
});
it('should update a spec with a file', function(done) {
org.specs.update({name:specName1, filename: specfiles[0].fq}, function(e, result){
assert.isNull(e, "error updating: " + util.format(e));
done();
});
});
it('should fail to update a spec with no name', function(done) {
org.specs.update({notname:"anything"}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
it('should fail to update a spec with an empty name', function(done) {
org.specs.update({name:''}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
it('should fail to update a spec with no content', function(done) {
org.specs.update({name:specName1 + ".foo"}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
});
describe('delete', function() {
it('should delete a spec', function(done) {
org.specs.del({name:specName1}, function(e, result){
assert.isNull(e, "error deleting: " + util.format(e));
done();
});
});
it('should delete another spec', function(done) {
org.specs.del({name:specName2}, function(e, result){
assert.isNull(e, "error deleting: " + util.format(e));
done();
});
});
it('should fail to delete a spec with no name', function(done) {
org.specs.del({}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
it('should fail to delete a non-existent spec', function(done) {
org.specs.del({name: faker.random.alphaNumeric(22)}, function(e, result){
assert.isNotNull(e, "the expected error did not occur");
done();
});
});
});
});
});