How to use the body.nestedObject.dateValue function in body

To help you get started, we’ve selected a few body examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github lukeautry / tsoa / tests / integration / openapi3-express.spec.ts View on Github external
);
        expect(body.fields['body.intersection'].message).to.equal('Could not match the intersection against every type. Issues: [{"body.value2":{"message":"\'value2\' is required"}}]');

        expect(body.fields['body.nestedObject.floatValue'].message).to.equal('Invalid float error message.');
        expect(body.fields['body.nestedObject.floatValue'].value).to.equal(bodyModel.floatValue);
        expect(body.fields['body.nestedObject.doubleValue'].message).to.equal('Invalid double error message.');
        expect(body.fields['body.nestedObject.doubleValue'].value).to.equal(bodyModel.doubleValue);
        expect(body.fields['body.nestedObject.intValue'].message).to.equal('invalid integer number');
        expect(body.fields['body.nestedObject.intValue'].value).to.equal(bodyModel.intValue);
        expect(body.fields['body.nestedObject.longValue'].message).to.equal('Custom Required long number.');
        expect(body.fields['body.nestedObject.longValue'].value).to.equal(bodyModel.longValue);
        expect(body.fields['body.nestedObject.booleanValue'].message).to.equal('invalid boolean value');
        expect(body.fields['body.nestedObject.booleanValue'].value).to.equal(bodyModel.booleanValue);

        expect(body.fields['body.nestedObject.dateValue'].message).to.equal('invalid ISO 8601 date format, i.e. YYYY-MM-DD');
        expect(body.fields['body.nestedObject.dateValue'].value).to.equal(bodyModel.dateValue);
        expect(body.fields['body.nestedObject.datetimeValue'].message).to.equal('invalid ISO 8601 datetime format, i.e. YYYY-MM-DDTHH:mm:ss');
        expect(body.fields['body.nestedObject.datetimeValue'].value).to.equal(bodyModel.datetimeValue);

        expect(body.fields['body.nestedObject.numberMax10'].message).to.equal('max 10');
        expect(body.fields['body.nestedObject.numberMax10'].value).to.equal(bodyModel.numberMax10);
        expect(body.fields['body.nestedObject.numberMin5'].message).to.equal('min 5');
        expect(body.fields['body.nestedObject.numberMin5'].value).to.equal(bodyModel.numberMin5);
        expect(body.fields['body.nestedObject.stringMax10Lenght'].message).to.equal('maxLength 10');
        expect(body.fields['body.nestedObject.stringMax10Lenght'].value).to.equal(bodyModel.stringMax10Lenght);
        expect(body.fields['body.nestedObject.stringMin5Lenght'].message).to.equal('minLength 5');
        expect(body.fields['body.nestedObject.stringMin5Lenght'].value).to.equal(bodyModel.stringMin5Lenght);
        expect(body.fields['body.nestedObject.stringPatternAZaz'].message).to.equal("Not match in '^[a-zA-Z]+$'");
        expect(body.fields['body.nestedObject.stringPatternAZaz'].value).to.equal(bodyModel.stringPatternAZaz);

        expect(body.fields['body.nestedObject.arrayMax5Item'].message).to.equal('maxItems 5');
        expect(body.fields['body.nestedObject.arrayMax5Item'].value).to.deep.equal(bodyModel.arrayMax5Item);
github lukeautry / tsoa / tests / integration / dynamic-controllers-express-server.spec.ts View on Github external
);
          expect(body.fields['body.intersection'].message).to.equal('Could not match the intersection against every type. Issues: [{"body.value2":{"message":"\'value2\' is required"}}]');

          expect(body.fields['body.nestedObject.floatValue'].message).to.equal('Invalid float error message.');
          expect(body.fields['body.nestedObject.floatValue'].value).to.equal(bodyModel.floatValue);
          expect(body.fields['body.nestedObject.doubleValue'].message).to.equal('Invalid double error message.');
          expect(body.fields['body.nestedObject.doubleValue'].value).to.equal(bodyModel.doubleValue);
          expect(body.fields['body.nestedObject.intValue'].message).to.equal('invalid integer number');
          expect(body.fields['body.nestedObject.intValue'].value).to.equal(bodyModel.intValue);
          expect(body.fields['body.nestedObject.longValue'].message).to.equal('Custom Required long number.');
          expect(body.fields['body.nestedObject.longValue'].value).to.equal(bodyModel.longValue);
          expect(body.fields['body.nestedObject.booleanValue'].message).to.equal('invalid boolean value');
          expect(body.fields['body.nestedObject.booleanValue'].value).to.equal(bodyModel.booleanValue);

          expect(body.fields['body.nestedObject.dateValue'].message).to.equal('invalid ISO 8601 date format, i.e. YYYY-MM-DD');
          expect(body.fields['body.nestedObject.dateValue'].value).to.equal(bodyModel.dateValue);
          expect(body.fields['body.nestedObject.datetimeValue'].message).to.equal('invalid ISO 8601 datetime format, i.e. YYYY-MM-DDTHH:mm:ss');
          expect(body.fields['body.nestedObject.datetimeValue'].value).to.equal(bodyModel.datetimeValue);

          expect(body.fields['body.nestedObject.numberMax10'].message).to.equal('max 10');
          expect(body.fields['body.nestedObject.numberMax10'].value).to.equal(bodyModel.numberMax10);
          expect(body.fields['body.nestedObject.numberMin5'].message).to.equal('min 5');
          expect(body.fields['body.nestedObject.numberMin5'].value).to.equal(bodyModel.numberMin5);
          expect(body.fields['body.nestedObject.stringMax10Lenght'].message).to.equal('maxLength 10');
          expect(body.fields['body.nestedObject.stringMax10Lenght'].value).to.equal(bodyModel.stringMax10Lenght);
          expect(body.fields['body.nestedObject.stringMin5Lenght'].message).to.equal('minLength 5');
          expect(body.fields['body.nestedObject.stringMin5Lenght'].value).to.equal(bodyModel.stringMin5Lenght);
          expect(body.fields['body.nestedObject.stringPatternAZaz'].message).to.equal("Not match in '^[a-zA-Z]+$'");
          expect(body.fields['body.nestedObject.stringPatternAZaz'].value).to.equal(bodyModel.stringPatternAZaz);

          expect(body.fields['body.nestedObject.arrayMax5Item'].message).to.equal('maxItems 5');
          expect(body.fields['body.nestedObject.arrayMax5Item'].value).to.deep.equal(bodyModel.arrayMax5Item);
github lukeautry / tsoa / tests / integration / openapi3-express.spec.ts View on Github external
'{"body.mixedUnion":{"message":"invalid object","value":123}}]',
        );
        expect(body.fields['body.intersection'].message).to.equal('Could not match the intersection against every type. Issues: [{"body.value2":{"message":"\'value2\' is required"}}]');

        expect(body.fields['body.nestedObject.floatValue'].message).to.equal('Invalid float error message.');
        expect(body.fields['body.nestedObject.floatValue'].value).to.equal(bodyModel.floatValue);
        expect(body.fields['body.nestedObject.doubleValue'].message).to.equal('Invalid double error message.');
        expect(body.fields['body.nestedObject.doubleValue'].value).to.equal(bodyModel.doubleValue);
        expect(body.fields['body.nestedObject.intValue'].message).to.equal('invalid integer number');
        expect(body.fields['body.nestedObject.intValue'].value).to.equal(bodyModel.intValue);
        expect(body.fields['body.nestedObject.longValue'].message).to.equal('Custom Required long number.');
        expect(body.fields['body.nestedObject.longValue'].value).to.equal(bodyModel.longValue);
        expect(body.fields['body.nestedObject.booleanValue'].message).to.equal('invalid boolean value');
        expect(body.fields['body.nestedObject.booleanValue'].value).to.equal(bodyModel.booleanValue);

        expect(body.fields['body.nestedObject.dateValue'].message).to.equal('invalid ISO 8601 date format, i.e. YYYY-MM-DD');
        expect(body.fields['body.nestedObject.dateValue'].value).to.equal(bodyModel.dateValue);
        expect(body.fields['body.nestedObject.datetimeValue'].message).to.equal('invalid ISO 8601 datetime format, i.e. YYYY-MM-DDTHH:mm:ss');
        expect(body.fields['body.nestedObject.datetimeValue'].value).to.equal(bodyModel.datetimeValue);

        expect(body.fields['body.nestedObject.numberMax10'].message).to.equal('max 10');
        expect(body.fields['body.nestedObject.numberMax10'].value).to.equal(bodyModel.numberMax10);
        expect(body.fields['body.nestedObject.numberMin5'].message).to.equal('min 5');
        expect(body.fields['body.nestedObject.numberMin5'].value).to.equal(bodyModel.numberMin5);
        expect(body.fields['body.nestedObject.stringMax10Lenght'].message).to.equal('maxLength 10');
        expect(body.fields['body.nestedObject.stringMax10Lenght'].value).to.equal(bodyModel.stringMax10Lenght);
        expect(body.fields['body.nestedObject.stringMin5Lenght'].message).to.equal('minLength 5');
        expect(body.fields['body.nestedObject.stringMin5Lenght'].value).to.equal(bodyModel.stringMin5Lenght);
        expect(body.fields['body.nestedObject.stringPatternAZaz'].message).to.equal("Not match in '^[a-zA-Z]+$'");
        expect(body.fields['body.nestedObject.stringPatternAZaz'].value).to.equal(bodyModel.stringPatternAZaz);

        expect(body.fields['body.nestedObject.arrayMax5Item'].message).to.equal('maxItems 5');
github lukeautry / tsoa / tests / integration / dynamic-controllers-express-server.spec.ts View on Github external
'{"body.mixedUnion":{"message":"invalid object","value":123}}]',
          );
          expect(body.fields['body.intersection'].message).to.equal('Could not match the intersection against every type. Issues: [{"body.value2":{"message":"\'value2\' is required"}}]');

          expect(body.fields['body.nestedObject.floatValue'].message).to.equal('Invalid float error message.');
          expect(body.fields['body.nestedObject.floatValue'].value).to.equal(bodyModel.floatValue);
          expect(body.fields['body.nestedObject.doubleValue'].message).to.equal('Invalid double error message.');
          expect(body.fields['body.nestedObject.doubleValue'].value).to.equal(bodyModel.doubleValue);
          expect(body.fields['body.nestedObject.intValue'].message).to.equal('invalid integer number');
          expect(body.fields['body.nestedObject.intValue'].value).to.equal(bodyModel.intValue);
          expect(body.fields['body.nestedObject.longValue'].message).to.equal('Custom Required long number.');
          expect(body.fields['body.nestedObject.longValue'].value).to.equal(bodyModel.longValue);
          expect(body.fields['body.nestedObject.booleanValue'].message).to.equal('invalid boolean value');
          expect(body.fields['body.nestedObject.booleanValue'].value).to.equal(bodyModel.booleanValue);

          expect(body.fields['body.nestedObject.dateValue'].message).to.equal('invalid ISO 8601 date format, i.e. YYYY-MM-DD');
          expect(body.fields['body.nestedObject.dateValue'].value).to.equal(bodyModel.dateValue);
          expect(body.fields['body.nestedObject.datetimeValue'].message).to.equal('invalid ISO 8601 datetime format, i.e. YYYY-MM-DDTHH:mm:ss');
          expect(body.fields['body.nestedObject.datetimeValue'].value).to.equal(bodyModel.datetimeValue);

          expect(body.fields['body.nestedObject.numberMax10'].message).to.equal('max 10');
          expect(body.fields['body.nestedObject.numberMax10'].value).to.equal(bodyModel.numberMax10);
          expect(body.fields['body.nestedObject.numberMin5'].message).to.equal('min 5');
          expect(body.fields['body.nestedObject.numberMin5'].value).to.equal(bodyModel.numberMin5);
          expect(body.fields['body.nestedObject.stringMax10Lenght'].message).to.equal('maxLength 10');
          expect(body.fields['body.nestedObject.stringMax10Lenght'].value).to.equal(bodyModel.stringMax10Lenght);
          expect(body.fields['body.nestedObject.stringMin5Lenght'].message).to.equal('minLength 5');
          expect(body.fields['body.nestedObject.stringMin5Lenght'].value).to.equal(bodyModel.stringMin5Lenght);
          expect(body.fields['body.nestedObject.stringPatternAZaz'].message).to.equal("Not match in '^[a-zA-Z]+$'");
          expect(body.fields['body.nestedObject.stringPatternAZaz'].value).to.equal(bodyModel.stringPatternAZaz);

          expect(body.fields['body.nestedObject.arrayMax5Item'].message).to.equal('maxItems 5');