mirror of
https://github.com/NixOS/nix.git
synced 2025-11-21 17:59:36 +01:00
Compilers in nixpkgs have caught up and major distros should also have recent enough compilers. It would be nice to have newer features like more full featured ranges and deducing this.
26 lines
645 B
C++
26 lines
645 B
C++
#include <regex>
|
|
|
|
#include <exception> // Needed by rapidcheck on Darwin
|
|
#include <rapidcheck.h>
|
|
|
|
#include "nix/util/hash.hh"
|
|
|
|
#include "nix/util/tests/hash.hh"
|
|
|
|
namespace rc {
|
|
using namespace nix;
|
|
|
|
Gen<Hash> Arbitrary<Hash>::arbitrary()
|
|
{
|
|
Hash prototype(HashAlgorithm::SHA1);
|
|
return gen::apply(
|
|
[](const std::vector<uint8_t> & v) {
|
|
Hash hash(HashAlgorithm::SHA1);
|
|
assert(v.size() == hash.hashSize);
|
|
std::copy(v.begin(), v.end(), hash.hash);
|
|
return hash;
|
|
},
|
|
gen::container<std::vector<uint8_t>>(prototype.hashSize, gen::arbitrary<uint8_t>()));
|
|
}
|
|
|
|
} // namespace rc
|