test: Add a utils::split() test

The test constructs a string by joining substrings, splits it, and
verifies that the original and resulting substrings match.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
Laurent Pinchart 2020-02-06 21:12:23 +02:00 committed by Kieran Bingham
parent 31a05b70aa
commit 53057c2a3e

View file

@ -7,6 +7,8 @@
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include "test.h"
#include "utils.h"
@ -19,6 +21,7 @@ class UtilsTest : public Test
protected:
int run()
{
/* utils::hex() test. */
std::ostringstream os;
std::string ref;
@ -46,6 +49,28 @@ protected:
return TestFail;
}
/* utils::split() test. */
std::vector<std::string> elements = {
"/bin",
"/usr/bin",
"",
"",
};
std::string path;
for (const auto &element : elements)
path += (path.empty() ? "" : ":") + element;
std::vector<std::string> dirs;
for (const auto &dir : utils::split(path, ":"))
dirs.push_back(dir);
if (dirs != elements) {
cerr << "utils::split() test failed" << endl;
return TestFail;
}
return TestPass;
}
};