IODA
test-concatstringvecs.cpp
Go to the documentation of this file.
1 /*
2  * (C) Crown Copyright 2021 Met Office
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
9 
10 #include <string>
11 #include <vector>
12 
13 #include "eckit/testing/Test.h"
14 
15 using namespace eckit::testing;
16 
17 namespace ioda {
18 namespace test {
19 
20 CASE("Non-empty inputs of equal element counts") {
21  std::vector<std::string> strVec1 = {"a", "A", "1"};
22  std::vector<std::string> strVec2 = {"b", "B", "2"};
23  std::vector<std::string> strVec3 = {"c", "C", "3"};
24  std::vector<std::string> expectedOutputVec = {"abc", "ABC", "123"};
25 
26  std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
27 
28  std::vector<std::string> outputVector = ioda::concatenateStringVectors(combinedVec);
29 
30  EXPECT(expectedOutputVec == outputVector);
31 }
32 
33 CASE("Empty inputs of equal element counts") {
34  std::vector<std::string> strVec1 = {"", "", ""};
35  std::vector<std::string> strVec2 = {"", "", ""};
36  std::vector<std::string> strVec3 = {"", "", ""};
37  std::vector<std::string> expectedOutputVec = {"", "", ""};
38 
39  std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
40 
41  std::vector<std::string> outputVector = ioda::concatenateStringVectors(combinedVec);
42 
43  EXPECT(expectedOutputVec == outputVector);
44 }
45 
46 CASE("Unequal element counts") {
47  std::vector<std::string> strVec1 = {"a", "A", "1"};
48  std::vector<std::string> strVec2 = {"b", "B", "2"};
49  std::vector<std::string> strVec3 = {"c", "3"};
50 
51  std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
52 
53  EXPECT_THROWS(ioda::concatenateStringVectors(combinedVec));
54 }
55 
56 CASE("One vector input") {
57  std::vector<std::string> strVec1 = {"a", "A", "1"};
58 
59  std::vector<std::vector<std::string> > combinedVec = {strVec1};
60  std::vector<std::string> outputVector = ioda::concatenateStringVectors(combinedVec);
61  EXPECT(strVec1 == outputVector);
62 }
63 
64 CASE("Trailing spaces removed") {
65  std::vector<std::string> strVec1 = {"f oo", "b ar", " baz"};
66  std::vector<std::string> strVec2 = {"f o o", "ba r", "baz"};
67  std::vector<std::string> strVec3 = {"f o o ", "bar ", "baz "};
68  std::vector<std::string> expectedOutputVec = {"f oof o of o o", "b arba rbar", " bazbazbaz"};
69 
70  std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
71 
72  std::vector<std::string> outputVector = ioda::concatenateStringVectors(combinedVec);
73 
74  EXPECT(expectedOutputVec == outputVector);
75 }
76 
77 CASE("All space vectors") {
78  std::vector<std::string> strVec1 = {"", "", " "};
79  std::vector<std::string> strVec2 = {"", " ", " "};
80  std::vector<std::string> strVec3 = {" ", " ", " "};
81  std::vector<std::string> expectedOutputVec = {"", "", ""};
82 
83  std::vector<std::vector<std::string> > combinedVec = {strVec1, strVec2, strVec3};
84 
85  std::vector<std::string> outputVector = ioda::concatenateStringVectors(combinedVec);
86 
87  EXPECT(expectedOutputVec == outputVector);
88 }
89 
90 } // namespace test
91 } // namespace ioda
92 
93 int main(int argc, char** argv) {
94  return run_tests(argc, argv);
95 }
IODA_DL std::vector< std::string > concatenateStringVectors(const std::vector< std::vector< std::string >> &stringVectors)
Concatenate equal-length vectors of strings element-by-element. Removes trailing spaces.
int main(int argc, char **argv)
CASE("Validation")