forked from lix-project/lix
test: Generate distinct path names
Gen::just is the constant generator. Don't just return that!
This commit is contained in:
parent
b13e6a76b4
commit
69bbd5852a
|
@ -1,3 +1,4 @@
|
||||||
|
#include <rapidcheck/gen/Arbitrary.h>
|
||||||
#include <regex>
|
#include <regex>
|
||||||
|
|
||||||
#include <rapidcheck.h>
|
#include <rapidcheck.h>
|
||||||
|
@ -20,59 +21,60 @@ void showValue(const StorePath & p, std::ostream & os)
|
||||||
namespace rc {
|
namespace rc {
|
||||||
using namespace nix;
|
using namespace nix;
|
||||||
|
|
||||||
Gen<StorePathName> Arbitrary<StorePathName>::arbitrary()
|
Gen<char> storePathChar()
|
||||||
{
|
{
|
||||||
auto len = *gen::inRange<size_t>(
|
return rc::gen::apply([](uint8_t i) -> char {
|
||||||
1,
|
switch (i) {
|
||||||
StorePath::MaxPathLen - StorePath::HashLen);
|
|
||||||
|
|
||||||
std::string pre;
|
|
||||||
pre.reserve(len);
|
|
||||||
|
|
||||||
for (size_t c = 0; c < len; ++c) {
|
|
||||||
switch (auto i = *gen::inRange<uint8_t>(0, 10 + 2 * 26 + 6)) {
|
|
||||||
case 0 ... 9:
|
case 0 ... 9:
|
||||||
pre += '0' + i;
|
return '0' + i;
|
||||||
case 10 ... 35:
|
case 10 ... 35:
|
||||||
pre += 'A' + (i - 10);
|
return 'A' + (i - 10);
|
||||||
break;
|
|
||||||
case 36 ... 61:
|
case 36 ... 61:
|
||||||
pre += 'a' + (i - 36);
|
return 'a' + (i - 36);
|
||||||
break;
|
|
||||||
case 62:
|
case 62:
|
||||||
pre += '+';
|
return '+';
|
||||||
break;
|
|
||||||
case 63:
|
case 63:
|
||||||
pre += '-';
|
return '-';
|
||||||
break;
|
|
||||||
case 64:
|
case 64:
|
||||||
pre += '.';
|
return '.';
|
||||||
break;
|
|
||||||
case 65:
|
case 65:
|
||||||
pre += '_';
|
return '_';
|
||||||
break;
|
|
||||||
case 66:
|
case 66:
|
||||||
pre += '?';
|
return '?';
|
||||||
break;
|
|
||||||
case 67:
|
case 67:
|
||||||
pre += '=';
|
return '=';
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
assert(false);
|
assert(false);
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
gen::inRange<uint8_t>(0, 10 + 2 * 26 + 6));
|
||||||
|
}
|
||||||
|
|
||||||
return gen::just(StorePathName {
|
Gen<StorePathName> Arbitrary<StorePathName>::arbitrary()
|
||||||
.name = std::move(pre),
|
{
|
||||||
});
|
return gen::construct<StorePathName>(
|
||||||
|
gen::suchThat(
|
||||||
|
gen::container<std::string>(storePathChar()),
|
||||||
|
[](const std::string & s) {
|
||||||
|
return
|
||||||
|
!( s == ""
|
||||||
|
|| s == "."
|
||||||
|
|| s == ".."
|
||||||
|
|| s.starts_with(".-")
|
||||||
|
|| s.starts_with("..-")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
Gen<StorePath> Arbitrary<StorePath>::arbitrary()
|
Gen<StorePath> Arbitrary<StorePath>::arbitrary()
|
||||||
{
|
{
|
||||||
return gen::just(StorePath {
|
return
|
||||||
*gen::arbitrary<Hash>(),
|
gen::construct<StorePath>(
|
||||||
(*gen::arbitrary<StorePathName>()).name,
|
gen::arbitrary<Hash>(),
|
||||||
});
|
gen::apply([](StorePathName n){ return n.name; }, gen::arbitrary<StorePathName>())
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace rc
|
} // namespace rc
|
||||||
|
|
Loading…
Reference in a new issue