Project
Loading...
Searching...
No Matches
test_OverrideLabels.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
12// We prevent runDataProcessing from starting a workflow
13#define main anything_else_than_main
15#undef main
17
18using namespace o2::framework;
19
20// Mockup for a workflow with labels as args. It will behave as expected only in single-threaded code!!!
21static std::vector<ConfigParamSpec> specs;
22static ConfigParamRegistry registry{nullptr};
23std::unique_ptr<o2::framework::ConfigContext> mockupLabels(std::string labelArg)
24{
25 // FIXME: Ugly... We need to fix ownership and make sure the ConfigContext
26 // either owns or shares ownership of the registry.
27 std::vector<std::unique_ptr<ParamRetriever>> retrievers;
29 specs.push_back(ConfigParamSpec{"labels", VariantType::String, std::move(labelArg), {"labels specification"}});
30 auto store = std::make_unique<ConfigParamStore>(specs, std::move(retrievers));
31 store->preload();
32 store->activate();
33 registry = ConfigParamRegistry(std::move(store));
34 static ServiceRegistry services;
35 auto context = std::make_unique<ConfigContext>(registry, ServiceRegistryRef{services}, 0, nullptr);
36 return context;
37}
38
39#include <catch_amalgamated.hpp>
40
41TEST_CASE("OverrideLabels")
42{
43 {
44 // invalid format
45 WorkflowSpec workflow{{"A"}};
46 REQUIRE_THROWS_AS(overrideLabels(*mockupLabels("A"), workflow), std::runtime_error);
47 REQUIRE_THROWS_AS(overrideLabels(*mockupLabels("A:"), workflow), std::runtime_error);
48 REQUIRE_THROWS_AS(overrideLabels(*mockupLabels(":A"), workflow), std::runtime_error);
49 REQUIRE_THROWS_AS(overrideLabels(*mockupLabels("A:asdf,:"), workflow), std::runtime_error);
50 REQUIRE_THROWS_AS(overrideLabels(*mockupLabels("A:asdf,:A"), workflow), std::runtime_error);
51 REQUIRE_THROWS_AS(overrideLabels(*mockupLabels("A:asdf,B:"), workflow), std::runtime_error);
52 REQUIRE_THROWS_AS(overrideLabels(*mockupLabels("A:asdf,B"), workflow), std::runtime_error);
53 REQUIRE_THROWS_AS(overrideLabels(*mockupLabels("A,B:asdf"), workflow), std::runtime_error);
54 }
55 {
56 // one processor, one label
57 WorkflowSpec workflow{{"A"}};
58 auto ctx = mockupLabels("A:abc");
59 overrideLabels(*ctx, workflow);
60 REQUIRE(workflow[0].labels[0].value == "abc");
61 }
62 {
63 // many processors, many labels
64 WorkflowSpec workflow{{"A"}, {"B"}, {"C"}};
65 auto ctx = mockupLabels("A:a1:a2,B:b1,C:c1:c2:c3");
66 overrideLabels(*ctx, workflow);
67 REQUIRE(workflow[0].labels[0].value == "a1");
68 REQUIRE(workflow[0].labels[1].value == "a2");
69 REQUIRE(workflow[1].labels[0].value == "b1");
70 REQUIRE(workflow[2].labels[0].value == "c1");
71 REQUIRE(workflow[2].labels[1].value == "c2");
72 REQUIRE(workflow[2].labels[2].value == "c3");
73 }
74 {
75 // duplicate labels in arg
76 WorkflowSpec workflow{{"A"}};
77 auto ctx = mockupLabels("A:a1:a1");
78 overrideLabels(*ctx, workflow);
79 REQUIRE(workflow[0].labels.size() == 1);
80 REQUIRE(workflow[0].labels[0].value == "a1");
81 }
82 {
83 // duplicate labels - one in WF, one in arg
84 WorkflowSpec workflow{{"A"}};
85 workflow[0].labels.push_back({"a1"});
86 auto ctx = mockupLabels("A:a1");
87 overrideLabels(*ctx, workflow);
88 REQUIRE(workflow[0].labels.size() == 1);
89 REQUIRE(workflow[0].labels[0].value == "a1");
90 }
91}
GLsizei const GLfloat * value
Definition glcorearb.h:819
Defining PrimaryVertex explicitly as messageable.
Definition TFIDInfo.h:20
TEST_CASE("test_prepareArguments")
std::vector< DataProcessorSpec > WorkflowSpec
void overrideLabels(o2::framework::ConfigContext &ctx, std::vector< o2::framework::DataProcessorSpec > &workflow)
Helper used to add labels to Data Processors.
static std::vector< ConfigParamSpec > requiredWorkflowOptions()
o2::framework::WorkflowSpec defineDataProcessing(o2::framework::ConfigContext const &)
This function hooks up the the workflow specifications into the DPL driver.
std::unique_ptr< o2::framework::ConfigContext > mockupLabels(std::string labelArg)