-
Notifications
You must be signed in to change notification settings - Fork 12k
/
Copy pathpath_spec.ts
32 lines (27 loc) · 957 Bytes
/
path_spec.ts
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
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { formatValidator } from './format-validator';
import { pathFormat } from './path';
describe('Schematics Path format', () => {
it('accepts correct Paths', async () => {
const data = { path: 'a/b/c' };
const dataSchema = {
properties: { path: { type: 'string', format: 'path' } },
};
const result = await formatValidator(data, dataSchema, [pathFormat]);
expect(result.success).toBeTrue();
});
it('rejects Paths that are not normalized', async () => {
const data = { path: 'a/b/c/../' };
const dataSchema = {
properties: { path: { type: 'string', format: 'path' } },
};
const result = await formatValidator(data, dataSchema, [pathFormat]);
expect(result.success).toBeFalse();
});
});