Example #1
0
    def test_validate_required_none_list(self):
        self.app.data.insert('content_types', [{
            '_id': 'foo',
            'schema': {
                'subject': {
                    'type': 'list',
                    'required': True,
                    'mandatory_in_list': {'scheme': {'subject': 'subject_custom', 'category': 'category'}},
                    'schema': {
                        'type': 'dict',
                        'schema': {
                            'name': {},
                            'qcode': {},
                            'scheme': {
                                'type': 'string',
                                'required': True,
                                'allowed': ['subject_custom', 'category']
                            },
                            'service': {'nullable': True},
                            'parent': {'nullable': True}
                        }
                    }
                }
            }
        }])

        service = ValidateService()
        errors = service.create([
            {'act': 'test', 'type': 'test', 'validate': {'profile': 'foo', 'subject': None}}
        ])

        self.assertEqual(errors, [['SUBJECT is a required field']])
Example #2
0
 def test_validate_field_sms_not_enabled(self):
     self.app.data.insert('content_types', [{
         '_id': 'foo',
         'schema': {
             'sms': {
                 "minlength": 10,
                 "required": True,
                 "enabled": True,
                 "type": "string",
                 "maxlength": 160,
                 "nullable": True
             }
         }
     }])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {
                 'profile': 'foo',
                 'flags': {
                     'marked_for_sms': False
                 },
                 'sms_message': 'short'
             },
         },
     ])
     self.assertEqual(errors, [[]])
Example #3
0
 def test_validate_custom_fields(self):
     self.app.data.insert('content_types', [{
         '_id': 'foo',
         'schema': {
             'embed1': {
                 "required": True,
                 "enabled": True,
                 "type": "embed",
                 "nullable": False
             },
             'text1': {
                 "minlength": 10,
                 "required": True,
                 "enabled": True,
                 "type": "text",
                 "maxlength": 160,
                 "nullable": False
             }
         }
     }])
     self.app.data.insert('vocabularies', [{
         '_id': 'embed1',
         'type': 'manageable',
         'field_type': 'embed'
     }, {
         '_id': 'text1',
         'type': 'manageable',
         'field_type': 'text'
     }])
     service = ValidateService()
     doc = {
         'act': 'test',
         ITEM_TYPE: 'test',
         'validate': {
             'profile': 'foo'
         }
     }
     schema = {
         'extra': {
             'schema': {
                 'embed1': {
                     'required': True,
                     'enabled': True,
                     'nullable': False,
                     'empty': False,
                     'type': 'dict'
                 },
                 'text1': {
                     'enabled': True,
                     'required': True,
                     'nullable': False,
                     'minlength': 10,
                     'maxlength': 160,
                     'type': 'string'
                 }
             },
             'type': 'dict'
         }
     }
     self.assertEqual(service._get_validators(doc)[0]['schema'], schema)
Example #4
0
    def test_validate_field_required_media_description_required_false_null_true(
            self):
        self.app.data.insert('content_types', [{
            '_id': 'foo',
            'schema': {
                'slugline': None,
                'feature_media': {
                    'required': False,
                    'nullable': True,
                    'type': 'media'
                },
                'media_description': {
                    'required': False,
                    'nullable': True
                },
            }
        }])
        service = ValidateService()
        errors = service.create([
            {
                'act': 'test',
                'type': 'test',
                'validate': {
                    'profile': 'foo',
                    'slugline': 'foo',
                    'associations': {
                        'featuremedia': None
                    }
                },
            },
        ])

        self.assertEqual([], errors[0])
Example #5
0
 def test_validate_field_required_media_description_null(self):
     self.app.data.insert('content_types', [{
         '_id': 'foo',
         'schema': {
             'slugline': None,
             'feature_media': {
                 'required': True
             },
             'media_description': {
                 'required': True
             },
         }
     }])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {
                 'profile': 'foo',
                 'slugline': 'foo',
                 'associations': {
                     'featuremedia': None
                 }
             },
         },
     ])
     self.assertIn('FEATURE_MEDIA is a required field', errors[0])
     self.assertIn('MEDIA_DESCRIPTION is a required field', errors[0])
Example #6
0
 def test_validate_field_feature_media_and_media_description(self):
     self.app.data.insert('content_types', [{
         '_id': 'foo',
         'schema': {
             'slugline': None,
             'feature_media': {
                 'required': True,
                 'type': 'media'
             },
             'media_description': {
                 'required': True
             },
         }
     }])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {
                 'profile': 'foo',
                 'slugline': 'foo',
                 'associations': {
                     'featuremedia': {
                         'description_text': 'test'
                     }
                 }
             },
         },
     ])
     self.assertEqual(errors, [[]])
Example #7
0
 def test_validate_field_feature_media_and_media_description(self):
     self.app.data.insert('content_types', [{
         '_id': 'foo',
         'schema': {
             'slugline': None,
             'feature_media': {
                 'required': True,
                 'type': 'media'
             },
             'media_description': {
                 'required': True
             },
         }
     }])
     service = ValidateService()
     feature_media = MEDIA_MANDATORY
     feature_media.update({'description_text': 'test'})
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {
                 'profile': 'foo',
                 'slugline': 'foo',
                 'associations': {
                     'featuremedia': feature_media
                 }
             },
         },
     ],
                             fields=True)
     self.assertEqual([], errors[0][0])
Example #8
0
 def test_validate_field_without_schema(self):
     self.app.data.insert(
         "content_types",
         [{
             "_id": "foo",
             "schema": {
                 "slugline": None,
                 "headline": {
                     "required": True
                 },
             },
         }],
     )
     service = ValidateService()
     errors = service.create(
         [
             {
                 "act": "test",
                 "type": "test",
                 "validate": {
                     "profile": "foo",
                     "slugline": "foo"
                 },
             },
         ],
         fields=True,
     )
     self.assertIn("HEADLINE is a required field", errors[0][0])
Example #9
0
 def test_validate_field_required_related_content_error(self):
     self.app.data.insert(
         "content_types",
         [{
             "_id": "foo",
             "schema": {
                 "slugline": None,
                 "related_content_field": {
                     "required": True,
                     "type": "related_content"
                 },
             },
         }],
     )
     service = ValidateService()
     errors = service.create(
         [
             {
                 "act": "test",
                 "type": "test",
                 "validate": {
                     "profile": "foo",
                     "slugline": "foo",
                     "associations": {}
                 },
             },
         ],
         fields=True,
     )
     self.assertIn("RELATED_CONTENT_FIELD is a required field",
                   errors[0][0])
Example #10
0
    def test_validate_required_none_list(self):
        self.app.data.insert('content_types', [{
            '_id': 'foo',
            'schema': {
                'subject': {
                    'type': 'list',
                    'required': True,
                    'mandatory_in_list': {'scheme': {'subject': 'subject_custom', 'category': 'category'}},
                    'schema': {
                        'type': 'dict',
                        'schema': {
                            'name': {},
                            'qcode': {},
                            'scheme': {
                                'type': 'string',
                                'required': True,
                                'allowed': ['subject_custom', 'category']
                            },
                            'service': {'nullable': True},
                            'parent': {'nullable': True}
                        }
                    }
                }
            }
        }])

        service = ValidateService()
        errors = service.create([
            {'act': 'test', 'type': 'test', 'validate': {'profile': 'foo', 'subject': None}}
        ])

        self.assertEqual(errors, [['SUBJECT is a required field']])
Example #11
0
 def test_validate_field_required_feature_media(self):
     self.app.data.insert(
         "content_types",
         [{
             "_id": "foo",
             "schema": {
                 "slugline": None,
                 "feature_media": {
                     "required": True
                 },
             },
         }],
     )
     service = ValidateService()
     errors = service.create(
         [
             {
                 "act": "test",
                 "type": "test",
                 "validate": {
                     "profile": "foo",
                     "slugline": "foo"
                 },
             },
         ],
         fields=True,
     )
     self.assertEqual(["FEATURE MEDIA is a required field"], errors[0][0])
Example #12
0
 def test_validate_field_required_media_description_required_false(self):
     self.app.data.insert(
         "content_types",
         [{
             "_id": "foo",
             "schema": {
                 "slugline": None,
                 "feature_media": {
                     "required": True,
                     "type": "media"
                 },
                 "media_description": {
                     "required": False
                 },
             },
         }],
     )
     service = ValidateService()
     errors = service.create(
         [
             {
                 "act": "test",
                 "type": "test",
                 "validate": {
                     "profile": "foo",
                     "slugline": "foo",
                     "associations": {
                         "featuremedia": None
                     }
                 },
             },
         ],
         fields=True,
     )
     self.assertIn("FEATURE MEDIA is a required field", errors[0][0])
Example #13
0
 def test_validate_field_required_related_content(self):
     self.app.data.insert('content_types', [{
         '_id': 'foo',
         'schema': {
             'slugline': None,
             'related_content_field': {
                 'required': True,
                 'type': 'related_content'
             },
         }
     }])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {
                 'profile': 'foo',
                 'slugline': 'foo',
                 'associations': {
                     'related_content_field--1': MEDIA_MANDATORY
                 }
             },
         },
     ],
                             fields=True)
     self.assertEqual([], errors[0][0])
Example #14
0
 def test_validate_field_required_related_content(self):
     self.app.data.insert(
         "content_types",
         [{
             "_id": "foo",
             "schema": {
                 "slugline": None,
                 "related_content_field": {
                     "required": True,
                     "type": "related_content"
                 },
             },
         }],
     )
     service = ValidateService()
     errors = service.create(
         [
             {
                 "act": "test",
                 "type": "test",
                 "validate": {
                     "profile": "foo",
                     "slugline": "foo",
                     "associations": {
                         "related_content_field--1": MEDIA_MANDATORY
                     },
                 },
             },
         ],
         fields=True,
     )
     self.assertEqual([], errors[0][0])
Example #15
0
    def test_validate_required_subject_with_cv(self):
        """Test that subject required error is raised as expected when a custom vocabulary is used"""
        self.app.data.insert("content_types", [{
            "_id": "foo",
            "schema": {
                "subject": {
                    "type": "list",
                    "required": True
                }
            }
        }])

        service = ValidateService()
        errors = service.create(
            [{
                "act": "test",
                "type": "test",
                "validate": {
                    "profile":
                    "foo",
                    "subject": [{
                        "qcode": "test",
                        "name": "test",
                        "scheme": "custom_cv"
                    }],
                },
            }],
            fields=True,
        )

        self.assertEqual(["SUBJECT is a required field"], errors[0][0])
Example #16
0
 def test_validate_field_required_related_content_error(self):
     self.app.data.insert('content_types', [{
         '_id': 'foo',
         'schema': {
             'slugline': None,
             'related_content_field': {
                 'required': True,
                 'type': 'related_content'
             },
         }
     }])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {
                 'profile': 'foo',
                 'slugline': 'foo',
                 'associations': {}
             },
         },
     ],
                             fields=True)
     self.assertIn('RELATED_CONTENT_FIELD is a required field',
                   errors[0][0])
Example #17
0
    def test_validate_required_subject_with_cv(self):
        """Test that subject required error is raised as expected when a custom vocabulary is used"""
        self.app.data.insert('content_types', [{
            '_id': 'foo',
            'schema': {
                'subject': {
                    'type': 'list',
                    'required': True
                }
            }
        }])

        service = ValidateService()
        errors = service.create([{
            'act': 'test',
            'type': 'test',
            'validate': {
                'profile':
                'foo',
                'subject': [{
                    'qcode': 'test',
                    'name': 'test',
                    'scheme': 'custom_cv'
                }]
            }
        }],
                                fields=True)

        self.assertEqual(['SUBJECT is a required field'], errors[0][0])
Example #18
0
 def test_validate_field_sms_not_enabled(self):
     self.app.data.insert(
         "content_types",
         [{
             "_id": "foo",
             "schema": {
                 "sms": {
                     "minlength": 10,
                     "required": True,
                     "enabled": True,
                     "type": "string",
                     "maxlength": 160,
                     "nullable": True,
                 }
             },
         }],
     )
     service = ValidateService()
     errors = service.create(
         [
             {
                 "act": "test",
                 "type": "test",
                 "validate": {
                     "profile": "foo",
                     "flags": {
                         "marked_for_sms": False
                     },
                     "sms_message": "short"
                 },
             },
         ],
         fields=True,
     )
     self.assertEqual([], errors[0][0])
Example #19
0
 def test_validate_validate_characters(self):
     self.app.config["DISALLOWED_CHARACTERS"] = ["!", "@", "#"]
     self.app.data.insert("content_types", [{
         "_id": "foo",
         "schema": {
             "slugline": {
                 "validate_characters": True,
                 "type": "string"
             }
         }
     }])
     service = ValidateService()
     errors = service.create(
         [
             {
                 "act": "test",
                 "type": "test",
                 "validate": {
                     "profile": "foo",
                     "slugline": "!foo@#"
                 },
             },
         ],
         fields=True,
     )
     self.assertIn("SLUGLINE contains invalid characters", errors[0][0])
Example #20
0
    def test_validate_required_none_list(self):
        self.app.data.insert(
            "content_types",
            [{
                "_id": "foo",
                "schema": {
                    "subject": {
                        "type": "list",
                        "required": True,
                        "mandatory_in_list": {
                            "scheme": {
                                "custom_subject": {
                                    "required": True
                                },
                                "category": {
                                    "required": True
                                }
                            }
                        },
                        "schema": {
                            "type": "dict",
                            "schema": {
                                "name": {},
                                "qcode": {},
                                "scheme": {
                                    "type": "string",
                                    "required": True,
                                    "allowed": ["subject_custom", "category"],
                                },
                                "service": {
                                    "nullable": True
                                },
                                "parent": {
                                    "nullable": True
                                },
                            },
                        },
                    }
                },
            }],
        )

        service = ValidateService()
        errors = service.create([{
            "act": "test",
            "type": "test",
            "validate": {
                "profile": "foo",
                "subject": None
            }
        }],
                                fields=True)

        self.assertIn("CATEGORY is a required field", errors[0][0])
        self.assertIn("SUBJECT is a required field", errors[0][0])
Example #21
0
    def test_validate_required_empty_string(self):
        self.app.data.insert('content_types', [
            {'_id': 'foo', 'schema': {'headline': {'required': True}}}
        ])

        service = ValidateService()
        errors = service.create([
            {'act': 'test', 'type': 'test', 'validate': {'profile': 'foo', 'headline': ''}}
        ])

        self.assertEqual(['HEADLINE empty values not allowed'], errors[0])
Example #22
0
    def test_validate_required_empty_string(self):
        self.app.data.insert('content_types', [
            {'_id': 'foo', 'schema': {'headline': {'required': True}}}
        ])

        service = ValidateService()
        errors = service.create([
            {'act': 'test', 'type': 'test', 'validate': {'profile': 'foo', 'headline': ''}}
        ])

        self.assertEqual(['HEADLINE empty values not allowed'], errors[0])
Example #23
0
    def test_validate_required_empty_list(self):
        self.app.data.insert('content_types', [
            {'_id': 'foo', 'schema': {'subject': {'type': 'list', 'required': True}}}
        ])

        service = ValidateService()
        errors = service.create([
            {'act': 'test', 'type': 'test', 'validate': {'profile': 'foo', 'subject': []}}
        ])

        self.assertEqual(errors, [['SUBJECT is a required field']])
Example #24
0
    def test_validate_required_empty_list(self):
        self.app.data.insert('content_types', [
            {'_id': 'foo', 'schema': {'subject': {'type': 'list', 'required': True}}}
        ])

        service = ValidateService()
        errors = service.create([
            {'act': 'test', 'type': 'test', 'validate': {'profile': 'foo', 'subject': []}}
        ])

        self.assertEqual(errors, [['SUBJECT is a required field']])
Example #25
0
 def test_validate_field_required_feature_media(self):
     self.app.data.insert('content_types', [{'_id': 'foo', 'schema': {
         'slugline': None,
         'feature_media': {'required': True},
     }}])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {'profile': 'foo', 'slugline': 'foo'},
         },
     ])
     self.assertEqual(['FEATURE_MEDIA is a required field'], errors[0])
Example #26
0
 def test_validate_field_without_schema(self):
     self.app.data.insert('content_types', [{'_id': 'foo', 'schema': {
         'slugline': None,
         'headline': {'required': True},
     }}])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {'profile': 'foo', 'slugline': 'foo'},
         },
     ])
     self.assertEqual(['HEADLINE is a required field'], errors[0])
Example #27
0
 def test_validate_field_without_schema(self):
     self.app.data.insert('content_types', [{'_id': 'foo', 'schema': {
         'slugline': None,
         'headline': {'required': True},
     }}])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {'profile': 'foo', 'slugline': 'foo'},
         },
     ])
     self.assertEqual(['HEADLINE is a required field'], errors[0])
Example #28
0
 def test_validate_field_required_media_description_empty(self):
     self.app.data.insert('content_types', [{'_id': 'foo', 'schema': {
         'slugline': None,
         'feature_media': {'required': True, 'type': 'media'},
         'media_description': {'required': True}
     }}])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {'profile': 'foo', 'slugline': 'foo', 'associations': {'featuremedia': {}}},
         }
     ])
     self.assertIn('MEDIA_DESCRIPTION is a required field', errors[0])
Example #29
0
 def test_sanitize_text_fields(self):
     item = {
         'headline': '<p>headline</p>',
         'extra': {
             'text1': '<p>text 1</p>'
         }
     }
     sanitized_item = {'headline': 'headline', 'extra': {'text1': 'text 1'}}
     validator = {
         'schema': {
             'headline': {
                 'maxlength': 64,
                 'nullable': True,
                 'required': False,
                 'type': 'string'
             },
             'extra': {
                 'schema': {
                     'text1': {
                         'maxlength': 10,
                         'nullable': True,
                         'required': False,
                         'type': 'string'
                     }
                 }
             }
         }
     }
     ValidateService()._sanitize_fields(item, validator)
     self.assertEqual(item, sanitized_item)
Example #30
0
    def test_validate_field_required_media_description_required_false_null_true(self):
        self.app.data.insert('content_types', [{'_id': 'foo', 'schema': {
            'slugline': None,
            'feature_media': {'required': False, 'nullable': True, 'type': 'media'},
            'media_description': {'required': False, 'nullable': True},
        }}])
        service = ValidateService()
        errors = service.create([
            {
                'act': 'test',
                'type': 'test',
                'validate': {'profile': 'foo', 'slugline': 'foo', 'associations': {'featuremedia': None}},
            },
        ])

        self.assertEqual([], errors[0])
Example #31
0
 def test_validate_process_media(self):
     media = {"headline": "media 1"}
     item = {"associations": {"media1--1": media}}
     validation_schema = {"media1": {"required": True}}
     ValidateService()._process_media(item, validation_schema)
     self.assertIn("media1", item)
     self.assertEqual(media, item["media1"])
Example #32
0
 def test_sanitize_text_fields(self):
     item = {
         "headline": "<p>headline</p>",
         "extra": {
             "text1": "<p>text 1</p>"
         }
     }
     sanitized_item = {"headline": "headline", "extra": {"text1": "text 1"}}
     validator = {
         "schema": {
             "headline": {
                 "maxlength": 64,
                 "nullable": True,
                 "required": False,
                 "type": "string"
             },
             "extra": {
                 "schema": {
                     "text1": {
                         "maxlength": 10,
                         "nullable": True,
                         "required": False,
                         "type": "string"
                     }
                 }
             },
         }
     }
     ValidateService()._sanitize_fields(item, validator)
     self.assertEqual(item, sanitized_item)
Example #33
0
 def test_validate_process_media(self):
     media = {'headline': 'media 1'}
     item = {'associations': {'media1--1': media}}
     validation_schema = {'media1': {'required': True}}
     ValidateService()._process_media(item, validation_schema)
     self.assertIn('media1', item)
     self.assertEqual(media, item['media1'])
Example #34
0
 def test_validate_field_feature_media_and_media_description(self):
     self.app.data.insert('content_types', [{'_id': 'foo', 'schema': {
         'slugline': None,
         'feature_media': {'required': True, 'type': 'media'},
         'media_description': {'required': True},
     }}])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {
                 'profile': 'foo',
                 'slugline': 'foo',
                 'associations': {'featuremedia': {'description_text': 'test'}}
             },
         },
     ])
     self.assertEqual(errors, [[]])
Example #35
0
 def test_validate_field_sms_not_enabled(self):
     self.app.data.insert('content_types', [{'_id': 'foo', 'schema': {
         'sms': {
             "minlength": 10,
             "required": True,
             "enabled": True,
             "type": "string",
             "maxlength": 160,
             "nullable": True
         }}}])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {'profile': 'foo',
                          'flags': {'marked_for_sms': False},
                          'sms_message': 'short'
                          },
         },
     ])
     self.assertEqual(errors, [[]])
Example #36
0
    def test_validate_required_empty_string(self):
        self.app.data.insert("content_types", [{
            "_id": "foo",
            "schema": {
                "headline": {
                    "required": True
                }
            }
        }])

        service = ValidateService()
        errors = service.create([{
            "act": "test",
            "type": "test",
            "validate": {
                "profile": "foo",
                "headline": ""
            }
        }],
                                fields=True)

        self.assertEqual(["HEADLINE empty values not allowed"], errors[0][0])
Example #37
0
 def test_validate_validate_characters(self):
     self.app.config['DISALLOWED_CHARACTERS'] = ['!', '@', '#']
     self.app.data.insert('content_types', [{
         '_id': 'foo',
         'schema': {
             'slugline': {
                 'validate_characters': True,
                 'type': 'string'
             }
         }
     }])
     service = ValidateService()
     errors = service.create([
         {
             'act': 'test',
             'type': 'test',
             'validate': {
                 'profile': 'foo',
                 'slugline': '!foo@#'
             },
         },
     ])
     self.assertIn('SLUGLINE contains invalid characters', errors[0])
Example #38
0
    def test_validate_required_empty_list(self):
        self.app.data.insert("content_types", [{
            "_id": "foo",
            "schema": {
                "subject": {
                    "type": "list",
                    "required": True
                }
            }
        }])

        service = ValidateService()
        errors = service.create([{
            "act": "test",
            "type": "test",
            "validate": {
                "profile": "foo",
                "subject": []
            }
        }],
                                fields=True)

        self.assertEqual(["SUBJECT is a required field"], errors[0][0])
Example #39
0
 def test_validate_custom_fields(self):
     self.app.data.insert('content_types', [{'_id': 'foo', 'schema': {
         'embed1': {
             "required": True,
             "enabled": True,
             "type": "embed",
             "nullable": False
         },
         'text1': {
             "minlength": 10,
             "required": True,
             "enabled": True,
             "type": "text",
             "maxlength": 160,
             "nullable": False
         },
         'date1': {
             "required": True,
             "enabled": True,
             "type": "date",
             "nullable": False
         }
     }}])
     self.app.data.insert('vocabularies', [
         {'_id': 'embed1', 'type': 'manageable', 'field_type': 'embed'},
         {'_id': 'text1', 'type': 'manageable', 'field_type': 'text'},
         {'_id': 'date1', 'type': 'manageable', 'field_type': 'date'}
     ])
     service = ValidateService()
     doc = {
         'act': 'test',
         ITEM_TYPE: 'test',
         'validate': {
             'profile': 'foo'
         }
     }
     schema = {'extra': {
         'schema': {
             'embed1': {
                 'required': True,
                 'enabled': True,
                 'nullable': False,
                 'empty': False,
                 'type': 'dict'
             },
             'text1': {
                 'enabled': True,
                 'required': True,
                 'nullable': False,
                 'minlength': 10,
                 'maxlength': 160,
                 'type': 'string'
             },
             'date1': {
                 'required': True,
                 'enabled': True,
                 'nullable': False,
                 'empty': False,
                 'type': 'date'
             },
         },
         'type': 'dict'
     }}
     self.assertEqual(service._get_validators(doc)[0]['schema'], schema)
Example #40
0
 def test_sanitize_fields_not_in_schema(self):
     doc = {'body_html': 'test'}
     service = ValidateService()
     schema = {'schema': {'body_html': None}}
     service._sanitize_fields(doc, schema)
     self.assertEqual('test', doc['body_html'])