@@ -11,40 +11,44 @@ import { isValidSchema, getValidationWithDependencies } from '../utilities';
11
11
12
12
// @ts -ignore
13
13
const testGroup = ( { schemaName, schema, schemaTests } ) => {
14
- const chosen = Array . isArray ( schemaTests ) ? [ schemaTests ] : schemaTests ;
14
+ // pgps has an array response that is valid that needs to be converted to an array of arrays
15
+ const chosen =
16
+ schemaName === 'pgps' && Array . isArray ( schemaTests )
17
+ ? [ schemaTests ]
18
+ : schemaTests ;
19
+
15
20
test . each < Schema > ( chosen ) ( '%p' , ( example ) => {
16
21
expect ( isValidSchema ( schema , example ) ) . toEqual ( true ) ;
17
22
} ) ;
18
23
} ;
19
24
20
- describe ( 'Validate examples for cloud to device' , ( ) => {
25
+ const header = ( name : string ) => `
26
+ ***************************************************
27
+ ${ name . toUpperCase ( ) }
28
+ ***************************************************
29
+ ` ;
30
+
31
+ describe ( header ( 'device >>> cloud' ) , ( ) => {
21
32
const { schemasRecords } = getSchemaTestCollection (
22
- SchemaCollectionName . CloudToDevice ,
23
- ) ;
24
- describe . each < SchemaRecord > ( schemasRecords ) (
25
- '$schemaName' ,
26
- testGroup
33
+ SchemaCollectionName . DeviceToCloud ,
27
34
) ;
35
+
36
+ // console.log(`schemaRecords, ${JSON.stringify(schemasRecords, null, 2)}`);
37
+ describe . each < SchemaRecord > ( schemasRecords ) ( '$schemaName' , testGroup ) ;
28
38
} ) ;
29
39
30
- describe ( 'Validate examples for device to cloud' , ( ) => {
40
+ describe ( header ( 'cloud >>> device' ) , ( ) => {
31
41
const { schemasRecords } = getSchemaTestCollection (
32
- SchemaCollectionName . DeviceToCloud ,
33
- ) ;
34
- describe . each < SchemaRecord > ( schemasRecords ) (
35
- '$schemaName' ,
36
- testGroup ,
42
+ SchemaCollectionName . CloudToDevice ,
37
43
) ;
44
+ describe . each < SchemaRecord > ( schemasRecords ) ( '$schemaName' , testGroup ) ;
38
45
} ) ;
39
46
40
- describe ( 'Validate examples for the device shadow', ( ) => {
47
+ describe ( header ( ' device shadow') , ( ) => {
41
48
const { schemasRecords } = getSchemaTestCollection (
42
49
SchemaCollectionName . DeviceShadow ,
43
50
) ;
44
- describe . each < SchemaRecord > ( schemasRecords ) (
45
- '$schemaName' ,
46
- testGroup ,
47
- ) ;
51
+ describe . each < SchemaRecord > ( schemasRecords ) ( '$schemaName' , testGroup ) ;
48
52
} ) ;
49
53
50
54
describe ( 'Validate example for dependencies' , ( ) => {
0 commit comments