Files
fluxengine/tests/dataspec.cc
David Given 323da8272a Hopefully add support for giving the reader a set of required sectors, so if
one is missing then we can tell and the track can be reread.
2020-02-21 22:14:44 +01:00

135 lines
3.8 KiB
C++

#include "globals.h"
#include "flags.h"
#include "dataspec.h"
#include <assert.h>
static void test_split(void)
{
assert((DataSpec::split("1,2,3", ",")
== std::vector<std::string>{"1", "2", "3"}));
assert((DataSpec::split(",2,3", ",")
== std::vector<std::string>{"", "2", "3"}));
assert((DataSpec::split(",2,", ",")
== std::vector<std::string>{"", "2", ""}));
assert((DataSpec::split("2", ",")
== std::vector<std::string>{"2"}));
assert((DataSpec::split("", ",")
== std::vector<std::string>()));
}
static void test_parserange(void)
{
assert(DataSpec::parseRange("")
== std::set<unsigned>());
assert(DataSpec::parseRange("1")
== std::set<unsigned>({1}));
assert(DataSpec::parseRange("1,3,5")
== std::set<unsigned>({1, 3, 5}));
assert(DataSpec::parseRange("1,1,1")
== std::set<unsigned>({1}));
assert(DataSpec::parseRange("2-3")
== std::set<unsigned>({2, 3}));
assert(DataSpec::parseRange("2+3")
== std::set<unsigned>({2, 3, 4}));
assert(DataSpec::parseRange("2+3x2")
== std::set<unsigned>({2, 4}));
assert(DataSpec::parseRange("9,2+3x2")
== std::set<unsigned>({2, 4, 9}));
}
static void test_parsemod(void)
{
assert(DataSpec::parseMod("x=1")
== (DataSpec::Modifier{"x", {1}}));
assert(DataSpec::parseMod("x=1,3,5")
== (DataSpec::Modifier{"x", {1, 3, 5}}));
assert(DataSpec::parseMod("x=1,1,1")
== (DataSpec::Modifier{"x", {1}}));
assert(DataSpec::parseMod("x=2-3")
== (DataSpec::Modifier{"x", {2, 3}}));
assert(DataSpec::parseMod("x=2+3")
== (DataSpec::Modifier{"x", {2, 3, 4}}));
assert(DataSpec::parseMod("x=2+3x2")
== (DataSpec::Modifier{"x", {2, 4}}));
assert(DataSpec::parseMod("x=9,2+3x2")
== (DataSpec::Modifier{"x", {2, 4, 9}}));
}
static void test_fluxspec(void)
{
DataSpec spec("foo:t=0-2:s=0-1:d=0");
{
FluxSpec fspec(spec);
assert(fspec.filename == "foo");
assert((fspec.locations
== std::vector<FluxSpec::Location>
{{0, 0, 0}, {0, 0, 1}, {0, 1, 0}, {0, 1, 1}, {0, 2, 0}, {0, 2, 1}}));
assert((std::string)spec == "foo:d=0:s=0-1:t=0-2");
}
spec.set("bar");
{
FluxSpec fspec(spec);
assert(fspec.filename == "bar");
assert((fspec.locations
== std::vector<FluxSpec::Location>
{{0, 0, 0}, {0, 0, 1}, {0, 1, 0}, {0, 1, 1}, {0, 2, 0}, {0, 2, 1}}));
assert((std::string)spec == "bar:d=0:s=0-1:t=0-2");
}
spec.set(":t=0");
{
FluxSpec fspec(spec);
assert(fspec.filename.empty());
assert((fspec.locations
== std::vector<FluxSpec::Location>
{{0, 0, 0}, {0, 0, 1}}));
assert((std::string)spec == ":d=0:s=0-1:t=0");
}
spec.set(":s=1");
{
FluxSpec fspec(spec);
assert(fspec.filename.empty());
assert((fspec.locations
== std::vector<FluxSpec::Location>
{{0, 0, 1}}));
assert((std::string)spec == ":d=0:s=1:t=0");
}
spec.set(":t=9:d=1");
{
FluxSpec fspec(spec);
assert(fspec.filename.empty());
assert((fspec.locations
== std::vector<FluxSpec::Location>
{{1, 9, 1}}));
assert((std::string)spec == ":d=1:s=1:t=9");
}
}
static void test_imagespec(void)
{
DataSpec spec("foo:c=9:h=2:s=99:b=256");
{
ImageSpec ispec(spec);
assert(ispec.filename == "foo");
assert(ispec.cylinders == 9);
assert(ispec.heads == 2);
assert(ispec.sectors == 99);
assert(ispec.bytes = 256);
}
}
int main(int argc, const char* argv[])
{
test_split();
test_parserange();
test_parsemod();
test_fluxspec();
test_imagespec();
return 0;
}