1
0
mirror of https://github.com/django/django.git synced 2025-10-28 08:06:09 +00:00

Add equality support for Project/ModelState

This commit is contained in:
Andrew Godwin
2013-09-25 13:47:46 +01:00
parent 9027da65d3
commit 05656f2388
2 changed files with 61 additions and 0 deletions

View File

@@ -59,6 +59,14 @@ class ProjectState(object):
models[(model_state.app_label, model_state.name.lower())] = model_state
return cls(models)
def __eq__(self, other):
if set(self.models.keys()) != set(other.models.keys()):
return False
return all(model == other.models[key] for key, model in self.models.items())
def __ne__(self, other):
return not (self == other)
class ModelState(object):
"""
@@ -167,3 +175,16 @@ class ModelState(object):
if fname == name:
return field
raise ValueError("No field called %s on model %s" % (name, self.name))
def __eq__(self, other):
return (
(self.app_label == other.app_label) and
(self.name == other.name) and
(len(self.fields) == len(other.fields)) and
all((k1 == k2 and (f1.deconstruct()[1:] == f2.deconstruct()[1:])) for (k1, f1), (k2, f2) in zip(self.fields, other.fields)) and
(self.options == other.options) and
(self.bases == other.bases)
)
def __ne__(self, other):
return not (self == other)