Python django.db.models.PositiveIntegerField() Examples
The following are 30
code examples of django.db.models.PositiveIntegerField().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
django.db.models
, or try the search function
.
Example #1
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_pointing_to_swapped_model(self): class Replacement(models.Model): pass class SwappedModel(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object = GenericForeignKey() class Meta: swappable = 'TEST_SWAPPED_MODEL' class Model(models.Model): rel = GenericRelation('SwappedModel') self.assertEqual(Model.rel.field.check(), [ checks.Error( "Field defines a relation with the model " "'contenttypes_tests.SwappedModel', " "which has been swapped out.", hint="Update the relation to point at 'settings.TEST_SWAPPED_MODEL'.", obj=Model.rel.field, id='fields.E301', ) ])
Example #2
Source File: test_ordinary_fields.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_max_length_warning(self): class Model(models.Model): integer = models.IntegerField(max_length=2) biginteger = models.BigIntegerField(max_length=2) smallinteger = models.SmallIntegerField(max_length=2) positiveinteger = models.PositiveIntegerField(max_length=2) positivesmallinteger = models.PositiveSmallIntegerField(max_length=2) for field in Model._meta.get_fields(): if field.auto_created: continue with self.subTest(name=field.name): self.assertEqual(field.check(), [ DjangoWarning( "'max_length' is ignored when used with %s." % field.__class__.__name__, hint="Remove 'max_length' from field", obj=field, id='fields.W122', ) ])
Example #3
Source File: test_relative_fields.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_to_fields_not_checked_if_related_model_doesnt_exist(self): class Child(models.Model): a = models.PositiveIntegerField() b = models.PositiveIntegerField() parent = ForeignObject( 'invalid_models_tests.Parent', on_delete=models.SET_NULL, from_fields=('a', 'b'), to_fields=('a', 'b'), ) field = Child._meta.get_field('parent') self.assertEqual(field.check(), [ Error( "Field defines a relation with model 'invalid_models_tests.Parent', " "which is either not installed, or is abstract.", id='fields.E300', obj=field, ), ])
Example #4
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_invalid_content_type_field(self): class Model(models.Model): content_type = models.IntegerField() # should be ForeignKey object_id = models.PositiveIntegerField() content_object = GenericForeignKey('content_type', 'object_id') self.assertEqual(Model.content_object.check(), [ checks.Error( "'Model.content_type' is not a ForeignKey.", hint=( "GenericForeignKeys must use a ForeignKey to " "'contenttypes.ContentType' as the 'content_type' field." ), obj=Model.content_object, id='contenttypes.E003', ) ])
Example #5
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_content_type_field_pointing_to_wrong_model(self): class Model(models.Model): content_type = models.ForeignKey('self', models.CASCADE) # should point to ContentType object_id = models.PositiveIntegerField() content_object = GenericForeignKey('content_type', 'object_id') self.assertEqual(Model.content_object.check(), [ checks.Error( "'Model.content_type' is not a ForeignKey to 'contenttypes.ContentType'.", hint=( "GenericForeignKeys must use a ForeignKey to " "'contenttypes.ContentType' as the 'content_type' field." ), obj=Model.content_object, id='contenttypes.E004', ) ])
Example #6
Source File: tests.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_check_subset_composite_foreign_object(self): class Parent(models.Model): a = models.PositiveIntegerField() b = models.PositiveIntegerField() c = models.PositiveIntegerField() class Meta: unique_together = (('a', 'b'),) class Child(models.Model): a = models.PositiveIntegerField() b = models.PositiveIntegerField() c = models.PositiveIntegerField() d = models.CharField(max_length=255) parent = ForeignObject( Parent, on_delete=models.SET_NULL, from_fields=('a', 'b', 'c'), to_fields=('a', 'b', 'c'), related_name='children', ) self.assertEqual(Child._meta.get_field('parent').check(from_model=Child), [])
Example #7
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_field_name_ending_with_underscore(self): class TaggedItem(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object = GenericForeignKey() class InvalidBookmark(models.Model): tags_ = GenericRelation('TaggedItem') self.assertEqual(InvalidBookmark.tags_.field.check(), [ checks.Error( 'Field names must not end with an underscore.', obj=InvalidBookmark.tags_.field, id='fields.E001', ) ])
Example #8
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_pointing_to_swapped_model(self): class Replacement(models.Model): pass class SwappedModel(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object = GenericForeignKey() class Meta: swappable = 'TEST_SWAPPED_MODEL' class Model(models.Model): rel = GenericRelation('SwappedModel') self.assertEqual(Model.rel.field.check(), [ checks.Error( "Field defines a relation with the model " "'contenttypes_tests.SwappedModel', " "which has been swapped out.", hint="Update the relation to point at 'settings.TEST_SWAPPED_MODEL'.", obj=Model.rel.field, id='fields.E301', ) ])
Example #9
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_missing_generic_foreign_key(self): class TaggedItem(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() class Bookmark(models.Model): tags = GenericRelation('TaggedItem') self.assertEqual(Bookmark.tags.field.check(), [ checks.Error( "The GenericRelation defines a relation with the model " "'contenttypes_tests.TaggedItem', but that model does not have a " "GenericForeignKey.", obj=Bookmark.tags.field, id='contenttypes.E004', ) ])
Example #10
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_missing_generic_foreign_key(self): class TaggedItem(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() class Bookmark(models.Model): tags = GenericRelation('TaggedItem') self.assertEqual(Bookmark.tags.field.check(), [ checks.Error( "The GenericRelation defines a relation with the model " "'contenttypes_tests.TaggedItem', but that model does not have a " "GenericForeignKey.", obj=Bookmark.tags.field, id='contenttypes.E004', ) ])
Example #11
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_content_type_field_pointing_to_wrong_model(self): class Model(models.Model): content_type = models.ForeignKey('self', models.CASCADE) # should point to ContentType object_id = models.PositiveIntegerField() content_object = GenericForeignKey('content_type', 'object_id') self.assertEqual(Model.content_object.check(), [ checks.Error( "'Model.content_type' is not a ForeignKey to 'contenttypes.ContentType'.", hint=( "GenericForeignKeys must use a ForeignKey to " "'contenttypes.ContentType' as the 'content_type' field." ), obj=Model.content_object, id='contenttypes.E004', ) ])
Example #12
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_invalid_content_type_field(self): class Model(models.Model): content_type = models.IntegerField() # should be ForeignKey object_id = models.PositiveIntegerField() content_object = GenericForeignKey('content_type', 'object_id') self.assertEqual(Model.content_object.check(), [ checks.Error( "'Model.content_type' is not a ForeignKey.", hint=( "GenericForeignKeys must use a ForeignKey to " "'contenttypes.ContentType' as the 'content_type' field." ), obj=Model.content_object, id='contenttypes.E003', ) ])
Example #13
Source File: test_schema.py From django-pg-zero-downtime-migrations with MIT License | 6 votes |
def test_alter_field_drop_constraint_check__ok(mocker): mocker.patch.object(connection, 'cursor') mocker.patch.object(connection.introspection, 'get_constraints').return_value = { 'tests_model_field_0a53d95f_check': { 'columns': ['field'], 'primary_key': False, 'unique': False, 'foreign_key': None, 'check': True, 'index': False, 'definition': None, 'options': None, } } with cmp_schema_editor() as editor: old_field = models.PositiveIntegerField() old_field.set_attributes_from_name('field') new_field = models.IntegerField() new_field.set_attributes_from_name('field') editor.alter_field(Model, old_field, new_field) assert editor.collected_sql == timeouts(editor.django_sql) assert editor.django_sql == [ 'ALTER TABLE "tests_model" DROP CONSTRAINT "tests_model_field_0a53d95f_check";', ]
Example #14
Source File: tests.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_check_subset_composite_foreign_object(self): class Parent(models.Model): a = models.PositiveIntegerField() b = models.PositiveIntegerField() c = models.PositiveIntegerField() class Meta: unique_together = (('a', 'b'),) class Child(models.Model): a = models.PositiveIntegerField() b = models.PositiveIntegerField() c = models.PositiveIntegerField() d = models.CharField(max_length=255) parent = ForeignObject( Parent, on_delete=models.SET_NULL, from_fields=('a', 'b', 'c'), to_fields=('a', 'b', 'c'), related_name='children', ) self.assertEqual(Child._meta.get_field('parent').check(from_model=Child), [])
Example #15
Source File: test_schema.py From django-pg-zero-downtime-migrations with MIT License | 6 votes |
def test_alter_field_add_constraint_check__with_flexible_timeout__ok(): with cmp_schema_editor() as editor: old_field = models.IntegerField() old_field.set_attributes_from_name('field') new_field = models.PositiveIntegerField() new_field.set_attributes_from_name('field') editor.alter_field(Model, old_field, new_field) assert editor.collected_sql == timeouts( 'ALTER TABLE "tests_model" ADD CONSTRAINT "tests_model_field_0a53d95f_check" ' 'CHECK ("field" >= 0) NOT VALID;', ) + flexible_statement_timeout( 'ALTER TABLE "tests_model" VALIDATE CONSTRAINT "tests_model_field_0a53d95f_check";', ) assert editor.django_sql == [ 'ALTER TABLE "tests_model" ADD CONSTRAINT "tests_model_field_0a53d95f_check" CHECK ("field" >= 0);', ]
Example #16
Source File: test_relative_fields.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_to_fields_not_checked_if_related_model_doesnt_exist(self): class Child(models.Model): a = models.PositiveIntegerField() b = models.PositiveIntegerField() parent = ForeignObject( 'invalid_models_tests.Parent', on_delete=models.SET_NULL, from_fields=('a', 'b'), to_fields=('a', 'b'), ) field = Child._meta.get_field('parent') self.assertEqual(field.check(), [ Error( "Field defines a relation with model 'invalid_models_tests.Parent', " "which is either not installed, or is abstract.", id='fields.E300', obj=field, ), ])
Example #17
Source File: mapping.py From django-seeker with BSD 2-Clause "Simplified" License | 6 votes |
def document_field(field): """ The default ``field_factory`` method for converting Django field instances to ``elasticsearch_dsl.Field`` instances. Auto-created fields (primary keys, for example) and one-to-many fields (reverse FK relationships) are skipped. """ if field.auto_created or field.one_to_many: return None if field.many_to_many: return RawMultiString defaults = { models.DateField: dsl.Date(), models.DateTimeField: dsl.Date(), models.IntegerField: dsl.Long(), models.PositiveIntegerField: dsl.Long(), models.BooleanField: dsl.Boolean(), models.NullBooleanField: dsl.Boolean(), models.SlugField: dsl.String(index='not_analyzed'), models.DecimalField: dsl.Double(), models.FloatField: dsl.Float(), } return defaults.get(field.__class__, RawString)
Example #18
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 6 votes |
def test_field_name_ending_with_underscore(self): class TaggedItem(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object = GenericForeignKey() class InvalidBookmark(models.Model): tags_ = GenericRelation('TaggedItem') self.assertEqual(InvalidBookmark.tags_.field.check(), [ checks.Error( 'Field names must not end with an underscore.', obj=InvalidBookmark.tags_.field, id='fields.E001', ) ])
Example #19
Source File: models.py From webterminal with GNU General Public License v3.0 | 6 votes |
def __str__(self): return self.name # Create your models here. #from django.contrib.contenttypes.models import ContentType #from django.contrib.contenttypes import generic # A solution for foreignkey # class Foo(models.Model): #company_type = models.ForeignKey(ContentType) #company_id = models.PositiveIntegerField() #company = generic.GenericForeignKey('company_type', 'company_id') #seller = Seller.objects.create() #buyer = Buyer.objects.create() #foo1 = Foo.objects.create(company = seller) #foo2 = Foo.objects.create(company = buyer) # foo1.company # <Seller: Seller object> # foo2.company # <Buyer: Buyer object> # https://stackoverflow.com/questions/30551057/django-what-are-the-alternatives-to-having-a-foreignkey-to-an-abstract-class # https://lukeplant.me.uk/blog/posts/avoid-django-genericforeignkey/
Example #20
Source File: test_schema.py From django-pg-zero-downtime-migrations with MIT License | 6 votes |
def test_alter_field_add_constraint_check__ok(): with cmp_schema_editor() as editor: old_field = models.IntegerField() old_field.set_attributes_from_name('field') new_field = models.PositiveIntegerField() new_field.set_attributes_from_name('field') editor.alter_field(Model, old_field, new_field) assert editor.collected_sql == timeouts( 'ALTER TABLE "tests_model" ADD CONSTRAINT "tests_model_field_0a53d95f_check" ' 'CHECK ("field" >= 0) NOT VALID;', ) + [ 'ALTER TABLE "tests_model" VALIDATE CONSTRAINT "tests_model_field_0a53d95f_check";', ] assert editor.django_sql == [ 'ALTER TABLE "tests_model" ADD CONSTRAINT "tests_model_field_0a53d95f_check" CHECK ("field" >= 0);', ]
Example #21
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_valid_generic_relationship(self): class TaggedItem(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object = GenericForeignKey() class Bookmark(models.Model): tags = GenericRelation('TaggedItem') self.assertEqual(Bookmark.tags.field.check(), [])
Example #22
Source File: test_models.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_just_ordering_no_errors(self): class Model(models.Model): order = models.PositiveIntegerField() class Meta: ordering = ['order'] self.assertEqual(Model.check(), [])
Example #23
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_missing_content_type_field(self): class TaggedItem(models.Model): # no content_type field object_id = models.PositiveIntegerField() content_object = GenericForeignKey() expected = [ checks.Error( "The GenericForeignKey content type references the nonexistent " "field 'TaggedItem.content_type'.", obj=TaggedItem.content_object, id='contenttypes.E002', ) ] self.assertEqual(TaggedItem.content_object.check(), expected)
Example #24
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_field_name_ending_with_underscore(self): class Model(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object_ = GenericForeignKey('content_type', 'object_id') self.assertEqual(Model.content_object_.check(), [ checks.Error( 'Field names must not end with an underscore.', obj=Model.content_object_, id='fields.E001', ) ])
Example #25
Source File: test_cast.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_cast_to_integer(self): for field_class in ( models.AutoField, models.BigAutoField, models.IntegerField, models.BigIntegerField, models.SmallIntegerField, models.PositiveIntegerField, models.PositiveSmallIntegerField, ): with self.subTest(field_class=field_class): numbers = Author.objects.annotate(cast_int=Cast('alias', field_class())) self.assertEqual(numbers.get().cast_int, 1)
Example #26
Source File: tests.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_datetime_output_field(self): with register_lookup(models.PositiveIntegerField, DateTimeTransform): ut = MySQLUnixTimestamp.objects.create(timestamp=time.time()) y2k = timezone.make_aware(datetime(2000, 1, 1)) self.assertSequenceEqual(MySQLUnixTimestamp.objects.filter(timestamp__as_datetime__gt=y2k), [ut])
Example #27
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_valid_self_referential_generic_relationship(self): class Model(models.Model): rel = GenericRelation('Model') content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object = GenericForeignKey('content_type', 'object_id') self.assertEqual(Model.rel.field.check(), [])
Example #28
Source File: test_abstract_inheritance.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_virtual_field(self): class RelationModel(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object = GenericForeignKey('content_type', 'object_id') class RelatedModelAbstract(models.Model): field = GenericRelation(RelationModel) class Meta: abstract = True class ModelAbstract(models.Model): field = models.CharField(max_length=100) class Meta: abstract = True class OverrideRelatedModelAbstract(RelatedModelAbstract): field = models.CharField(max_length=100) class ExtendModelAbstract(ModelAbstract): field = GenericRelation(RelationModel) self.assertIsInstance(OverrideRelatedModelAbstract._meta.get_field('field'), models.CharField) self.assertIsInstance(ExtendModelAbstract._meta.get_field('field'), GenericRelation)
Example #29
Source File: tests.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_positive_integer_field(self): field = models.PositiveIntegerField() name, path, args, kwargs = field.deconstruct() self.assertEqual(path, "django.db.models.PositiveIntegerField") self.assertEqual(args, []) self.assertEqual(kwargs, {})
Example #30
Source File: test_checks.py From djongo with GNU Affero General Public License v3.0 | 5 votes |
def test_field_name_ending_with_underscore(self): class Model(models.Model): content_type = models.ForeignKey(ContentType, models.CASCADE) object_id = models.PositiveIntegerField() content_object_ = GenericForeignKey('content_type', 'object_id') self.assertEqual(Model.content_object_.check(), [ checks.Error( 'Field names must not end with an underscore.', obj=Model.content_object_, id='fields.E001', ) ])