13
13
def test_node_protocol_for_custom_nodes (runner , tmp_path ):
14
14
source = """
15
15
from typing import Annotated
16
+ from typing import Any
16
17
from pytask import Product
17
18
from attrs import define
18
19
from pathlib import Path
@@ -22,6 +23,7 @@ class CustomNode:
22
23
name: str
23
24
value: str
24
25
signature: str = "id"
26
+ attributes: dict[Any, Any] = {}
25
27
26
28
def state(self):
27
29
return self.value
@@ -43,12 +45,14 @@ def task_example(
43
45
result = runner .invoke (cli , [tmp_path .as_posix ()])
44
46
assert result .exit_code == ExitCode .OK
45
47
assert tmp_path .joinpath ("out.txt" ).read_text () == "text"
48
+ assert "FutureWarning" not in result .output
46
49
47
50
48
51
@pytest .mark .end_to_end
49
52
def test_node_protocol_for_custom_nodes_with_paths (runner , tmp_path ):
50
53
source = """
51
54
from typing import Annotated
55
+ from typing import Any
52
56
from pytask import Product
53
57
from pathlib import Path
54
58
from attrs import define
@@ -60,6 +64,7 @@ class PickleFile:
60
64
path: Path
61
65
value: Path
62
66
signature: str = "id"
67
+ attributes: dict[Any, Any] = {}
63
68
64
69
def state(self):
65
70
return str(self.path.stat().st_mtime)
@@ -87,3 +92,40 @@ def task_example(
87
92
result = runner .invoke (cli , [tmp_path .as_posix ()])
88
93
assert result .exit_code == ExitCode .OK
89
94
assert tmp_path .joinpath ("out.txt" ).read_text () == "text"
95
+
96
+
97
+ @pytest .mark .end_to_end
98
+ def test_node_protocol_for_custom_nodes_adding_attributes (runner , tmp_path ):
99
+ source = """
100
+ from typing import Annotated
101
+ from pytask import Product
102
+ from attrs import define
103
+ from pathlib import Path
104
+
105
+ @define
106
+ class CustomNode:
107
+ name: str
108
+ value: str
109
+ signature: str = "id"
110
+
111
+ def state(self):
112
+ return self.value
113
+
114
+ def load(self, is_product):
115
+ return self.value
116
+
117
+ def save(self, value):
118
+ self.value = value
119
+
120
+ def task_example(
121
+ data = CustomNode("custom", "text"),
122
+ out: Annotated[Path, Product] = Path("out.txt"),
123
+ ) -> None:
124
+ out.write_text(data)
125
+ """
126
+ tmp_path .joinpath ("task_module.py" ).write_text (textwrap .dedent (source ))
127
+
128
+ result = runner .invoke (cli , [tmp_path .as_posix ()])
129
+ assert result .exit_code == ExitCode .OK
130
+ assert tmp_path .joinpath ("out.txt" ).read_text () == "text"
131
+ assert "FutureWarning" in result .output
0 commit comments