monitor: make origin a setter
This commit is contained in:
parent
27ac6dd544
commit
dd575465db
2 changed files with 5 additions and 4 deletions
|
|
@ -62,14 +62,15 @@ class Context:
|
||||||
if origin is None or origin == self._origin:
|
if origin is None or origin == self._origin:
|
||||||
return self
|
return self
|
||||||
ctx = copy.copy(self)
|
ctx = copy.copy(self)
|
||||||
ctx.set_origin(origin)
|
ctx.origin = origin
|
||||||
return ctx
|
return ctx
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def origin(self):
|
def origin(self):
|
||||||
return self._origin
|
return self._origin
|
||||||
|
|
||||||
def set_origin(self, origin: str):
|
@origin.setter
|
||||||
|
def origin(self, origin: str):
|
||||||
self._origin = origin
|
self._origin = origin
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
||||||
|
|
@ -143,7 +143,7 @@ def test_context():
|
||||||
assert ctx_dict["id"] == "75bf3feab3d5662744c3ac38406ba73142aeb67666b1180bc1006f913b18f792"
|
assert ctx_dict["id"] == "75bf3feab3d5662744c3ac38406ba73142aeb67666b1180bc1006f913b18f792"
|
||||||
assert len(ctx_dict) == 1
|
assert len(ctx_dict) == 1
|
||||||
|
|
||||||
ctx.set_origin("org.osbuild.test-2")
|
ctx.origin = "org.osbuild.test-2"
|
||||||
ctx_dict = ctx.as_dict()
|
ctx_dict = ctx.as_dict()
|
||||||
# should be a full dict again
|
# should be a full dict again
|
||||||
assert "origin" in ctx_dict
|
assert "origin" in ctx_dict
|
||||||
|
|
@ -151,7 +151,7 @@ def test_context():
|
||||||
assert ctx_dict["pipeline"]["name"] == "test-pipeline"
|
assert ctx_dict["pipeline"]["name"] == "test-pipeline"
|
||||||
assert ctx_dict["pipeline"]["stage"]["name"] == "org.osbuild.noop"
|
assert ctx_dict["pipeline"]["stage"]["name"] == "org.osbuild.noop"
|
||||||
|
|
||||||
ctx.set_origin("org.osbuild.test")
|
ctx.origin = "org.osbuild.test"
|
||||||
ctx_dict = ctx.as_dict()
|
ctx_dict = ctx.as_dict()
|
||||||
# should only have id again (old context ID)
|
# should only have id again (old context ID)
|
||||||
assert ctx_dict["id"] == "75bf3feab3d5662744c3ac38406ba73142aeb67666b1180bc1006f913b18f792"
|
assert ctx_dict["id"] == "75bf3feab3d5662744c3ac38406ba73142aeb67666b1180bc1006f913b18f792"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue