summaryrefslogtreecommitdiff
path: root/tests/test_rules/RULES
blob: 69fe99d4bc26c1d8dc3bb3cf7f6486a0d4dfcade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
{ "test_case":
  { "doc":
    [ "Define a test case for rule tests."
    , "The config variables \"ENV\", \"ARCH\", \"HOST_ARCH\", \"TARGET_ARCH\","
    , "\"BUILD_ARCH\", \"OS\" are collected in a file named \"conf_vars.json\"."
    , "The test runner will pass that file as argument to \"-c\" to the \"just\""
    , "binary, which is internally called."
    ]
  , "string_fields": ["name", "libs", "targets", "asserts"]
  , "target_fields": ["data"]
  , "field_doc":
    { "name": ["Name of the test (multiple entries are joined)."]
    , "libs":
      [ "Paths to external libraries' trees provided by the \"test-libs\""
      , "repository. From within a test cases, the library's tree can be"
      , "accessed via [\"@\", \"<libpath>\", \"\", \"tree\"]."
      ]
    , "targets":
      [ "Target names to build and install. Each target name is prefixed by"
      , "\"+\" or \"-\", indicating if the build should fail or not."
      , "Targets that build successfully will be installed to a directory"
      , "named identical to the target name (without the prefix)."
      ]
    , "asserts":
      [ "List of commands to execute after all targets were processed. To"
      , "access artifacts from installed targets, use the corresponding target"
      , "name as prefix dir (e.g., target \"+foo\" installs to \"./foo/\")."
      ]
    , "data":
      ["The directory that contains the project with the targets to test."]
    }
  , "tainted": ["test"]
  , "config_vars":
    ["ENV", "ARCH", "HOST_ARCH", "TARGET_ARCH", "BUILD_ARCH", "OS"]
  , "implicit":
    { "runner": ["test_runner.py"]
    , "rules": [["@", "test-rules", "", "tree"]]
    , "just": [["@", "test-just", "", ""]]
    , "libs_tree": [["@", "test-libs", "", "tree"]]
    }
  , "imports": {"stage_artifact": "stage_singleton_field"}
  , "expression":
    { "type": "let*"
    , "bindings":
      [ ["name", {"type": "join", "$1": {"type": "FIELD", "name": "name"}}]
      , ["fieldname", "just"]
      , ["location", "bin/just"]
      , ["just", {"type": "CALL_EXPRESSION", "name": "stage_artifact"}]
      , ["fieldname", "rules"]
      , ["location", "rules"]
      , ["rules", {"type": "CALL_EXPRESSION", "name": "stage_artifact"}]
      , [ "imports"
        , { "type": "singleton_map"
          , "key": "imports/TARGETS"
          , "value":
            { "type": "BLOB"
            , "data": "{\"tree\":{\"type\":\"install\",\"dirs\":[[[\"TREE\",null,\".\"],\".\"]]}}"
            }
          }
        ]
      , ["fieldname", "libs_tree"]
      , ["location", "libs"]
      , ["libs", {"type": "CALL_EXPRESSION", "name": "stage_artifact"}]
      , ["fieldname", "data"]
      , ["location", "work"]
      , ["work", {"type": "CALL_EXPRESSION", "name": "stage_artifact"}]
      , ["fieldname", "runner"]
      , ["location", "runner"]
      , ["runner", {"type": "CALL_EXPRESSION", "name": "stage_artifact"}]
      , ["targets", {"type": "FIELD", "name": "targets"}]
      , ["asserts", {"type": "FIELD", "name": "asserts"}]
      , [ "work_bindings"
        , { "type": "map_union"
          , "$1":
            { "type": "++"
            , "$1":
              [ [{"type": "singleton_map", "key": "rules", "value": "rules"}]
              , { "type": "foreach"
                , "range": {"type": "FIELD", "name": "libs"}
                , "var": "libpath"
                , "body":
                  { "type": "singleton_map"
                  , "key": {"type": "var", "name": "libpath"}
                  , "value": {"type": "var", "name": "libpath"}
                  }
                }
              ]
            }
          }
        ]
      , [ "work_deps"
        , { "type": "map_union"
          , "$1":
            { "type": "++"
            , "$1":
              [ [ { "type": "let*"
                  , "bindings":
                    [ ["workspace_root", ["file", "rules"]]
                    , ["rules", {"type": "env", "vars": ["workspace_root"]}]
                    ]
                  , "body": {"type": "env", "vars": ["rules"]}
                  }
                ]
              , { "type": "foreach"
                , "range": {"type": "FIELD", "name": "libs"}
                , "var": "libpath"
                , "body":
                  { "type": "let*"
                  , "bindings":
                    [ [ "workspace_root"
                      , [ "file"
                        , { "type": "join"
                          , "$1": ["libs/", {"type": "var", "name": "libpath"}]
                          }
                        ]
                      ]
                    , ["target_root", ["file", "imports"]]
                    ]
                  , "body":
                    { "type": "singleton_map"
                    , "key": {"type": "var", "name": "libpath"}
                    , "value":
                      { "type": "env"
                      , "vars": ["workspace_root", "target_root"]
                      }
                    }
                  }
                }
              ]
            }
          }
        ]
      , [ "repos"
        , { "type": "singleton_map"
          , "key": "repos.json"
          , "value":
            { "type": "BLOB"
            , "data":
              { "type": "json_encode"
              , "$1":
                { "type": "let*"
                , "bindings":
                  [ ["workspace_root", ["file", "work"]]
                  , ["bindings", {"type": "var", "name": "work_bindings"}]
                  , [ "work"
                    , {"type": "env", "vars": ["workspace_root", "bindings"]}
                    ]
                  , [ "repositories"
                    , { "type": "map_union"
                      , "$1":
                        [ {"type": "env", "vars": ["work"]}
                        , {"type": "var", "name": "work_deps"}
                        ]
                      }
                    ]
                  , ["main", "work"]
                  ]
                , "body": {"type": "env", "vars": ["main", "repositories"]}
                }
              }
            }
          }
        ]
      , [ "config"
        , { "type": "singleton_map"
          , "key": "config.json"
          , "value":
            { "type": "BLOB"
            , "data":
              { "type": "json_encode"
              , "$1": {"type": "env", "vars": ["targets", "asserts"]}
              }
            }
          }
        ]
      , [ "conf_vars"
        , { "type": "singleton_map"
          , "key": "conf_vars.json"
          , "value":
            { "type": "BLOB"
            , "data":
              { "type": "json_encode"
              , "$1":
                { "type": "env"
                , "vars":
                  [ "ENV"
                  , "ARCH"
                  , "HOST_ARCH"
                  , "TARGET_ARCH"
                  , "BUILD_ARCH"
                  , "OS"
                  ]
                }
              }
            }
          }
        ]
      , [ "results"
        , { "type": "ACTION"
          , "inputs":
            { "type": "map_union"
            , "$1":
              [ {"type": "var", "name": "runner"}
              , {"type": "var", "name": "rules"}
              , {"type": "var", "name": "just"}
              , {"type": "var", "name": "imports"}
              , {"type": "var", "name": "libs"}
              , {"type": "var", "name": "repos"}
              , {"type": "var", "name": "work"}
              , {"type": "var", "name": "config"}
              , {"type": "var", "name": "conf_vars"}
              ]
            }
          , "outs": ["stdout", "stderr", "result", "time-start", "time-stop"]
          , "cmd": ["./runner"]
          , "may_fail": ["test"]
          , "fail_message":
            { "type": "join"
            , "$1": ["Rule test ", {"type": "var", "name": "name"}, " failed"]
            }
          }
        ]
      ]
    , "body":
      { "type": "RESULT"
      , "artifacts": {"type": "var", "name": "results"}
      , "runfiles":
        { "type": "singleton_map"
        , "key": {"type": "var", "name": "name"}
        , "value": {"type": "TREE", "$1": {"type": "var", "name": "results"}}
        }
      }
    }
  }
}