#pragma once #include #include #include #include "libexpr/attr-set.hh" #include "libexpr/nixexpr.hh" #include "libstore/derivations.hh" #include "libutil/hash.hh" namespace nix::tests { static nix::SymbolTable* symbol_table; } namespace rc { using nix::Derivation; using nix::DerivationOutput; using nix::Pos; using nix::Value; template <> struct Arbitrary { static Gen arbitrary() { return gen::map(gen::arbitrary(), [](std::string s) { return nix::tests::symbol_table->Create(s); }); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::build(gen::construct(), // TODO(grfn) generalize to more types gen::set(&Value::type, gen::just(nix::ValueType::tInt)), gen::set(&Value::integer, gen::arbitrary())); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::apply( [](nix::ValueType typ, int i) { auto ret = new Value(); ret->type = typ; ret->integer = i; return ret; }, gen::just(nix::ValueType::tInt), gen::arbitrary()); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::construct(gen::arbitrary(), gen::arbitrary(), gen::arbitrary()); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::apply( [](unsigned int line, unsigned int column) { return new Pos({}, line, column); }, gen::arbitrary(), gen::arbitrary()); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::construct(gen::arbitrary(), gen::arbitrary(), gen::arbitrary()); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::map(gen::arbitrary>(), [](auto attrs) { nix::Bindings res; for (const auto& attr : attrs) { res.push_back(attr); } return res; }); } }; template struct Arbitrary> { static Gen> arbitrary() { return gen::map(gen::arbitrary>(), [](std::map map) { absl::btree_map out_map; out_map.insert(map.begin(), map.end()); return out_map; }); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::element(nix::Base16, nix::Base32, nix::Base64); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::apply( [](std::string content, std::string path, std::string hash_algo, bool recursive, bool include_algo_in_hash, nix::Base base) { auto hash_type = nix::parseHashType(hash_algo); auto hash = nix::hashString(hash_type, content); return DerivationOutput( path, recursive ? absl::StrCat("r:", hash_algo) : hash_algo, hash.to_string(base, include_algo_in_hash)); }, gen::arbitrary(), gen::map(gen::arbitrary(), [](std::string s) { return absl::StrCat("/", s); }), gen::element("md5", "sha1", "sha256", "sha512"), gen::arbitrary(), gen::arbitrary(), gen::arbitrary()); } }; template <> struct Arbitrary { static Gen arbitrary() { auto gen_path = gen::map(gen::arbitrary(), [](std::string s) { return absl::StrCat("/", s); }); return gen::build( gen::set(&nix::BasicDerivation::outputs), gen::set(&nix::BasicDerivation::inputSrcs, gen::container(gen_path)), gen::set(&nix::BasicDerivation::platform), gen::set(&nix::BasicDerivation::builder, gen_path), gen::set(&nix::BasicDerivation::args), gen::set(&nix::BasicDerivation::env), gen::set(&Derivation::inputDrvs, gen::container( gen_path, gen::arbitrary()))); } }; template <> struct Arbitrary { static Gen arbitrary() { return gen::element(nix::BuildResult::Status::Built, nix::BuildResult::Status::Substituted, nix::BuildResult::Status::AlreadyValid, nix::BuildResult::Status::PermanentFailure, nix::BuildResult::Status::InputRejected, nix::BuildResult::Status::OutputRejected, nix::BuildResult::Status::TransientFailure, nix::BuildResult::Status::CachedFailure, nix::BuildResult::Status::TimedOut, nix::BuildResult::Status::MiscFailure, nix::BuildResult::Status::DependencyFailed, nix::BuildResult::Status::LogLimitExceeded, nix::BuildResult::Status::NotDeterministic); } }; } // namespace rc