nixpkgs/pkgs/development/ruby-modules/bundler-env/test.nix

68 lines
2.3 KiB
Nix
Raw Normal View History

/*
Run with:
nix-build -E 'with import <nixpkgs> { }; callPackage ./test.nix {}' --show-trace; and cat result
Confusingly, the ideal result ends with something like:
error: build of /nix/store/3245f3dcl2wxjs4rci7n069zjlz8qg85-test-results.tap.drv failed
*/
{ stdenv, writeText, lib, ruby, defaultGemConfig, callPackage }@defs:
2017-05-01 16:07:42 +00:00
let
test = import ./testing.nix;
tap = import ./tap-support.nix;
stubs = import ./stubs.nix defs;
should = import ./assertions.nix { inherit test lib; };
2017-05-01 16:07:42 +00:00
basicEnv = callPackage ./basic.nix stubs;
bundlerEnv = callPackage ./default.nix stubs // {
inherit basicEnv;
};
2017-05-01 16:07:42 +00:00
testConfigs = {
inherit lib;
2017-05-01 16:07:42 +00:00
gemConfig = defaultGemConfig;
};
functions = (import ./functions.nix testConfigs);
2017-05-01 16:07:42 +00:00
justName = bundlerEnv {
2017-05-15 16:36:30 +00:00
name = "test-0.1.2";
2017-05-01 16:07:42 +00:00
gemset = ./test/gemset.nix;
};
2017-05-15 16:36:30 +00:00
pnamed = bundlerEnv {
2017-05-01 16:07:42 +00:00
pname = "test";
gemdir = ./test;
2017-05-01 16:07:42 +00:00
gemset = ./test/gemset.nix;
gemfile = ./test/Gemfile;
lockfile = ./test/Gemfile.lock;
2017-05-01 16:07:42 +00:00
};
results = builtins.concatLists [
(test.run "Filter empty gemset" {} (set: functions.filterGemset {inherit ruby; groups = ["default"]; } set == {}))
( let gemSet = { test = { groups = ["x" "y"]; }; };
in
test.run "Filter matches a group" gemSet (set: functions.filterGemset {inherit ruby; groups = ["y" "z"];} set == gemSet))
2017-05-12 16:44:39 +00:00
( let gemSet = { test = { platforms = []; }; };
in
test.run "Filter matches empty platforms list" gemSet (set: functions.filterGemset {inherit ruby; groups = [];} set == gemSet))
2017-05-12 16:47:00 +00:00
( let gemSet = { test = { platforms = [{engine = ruby.rubyEngine; version = ruby.version.majMin;}]; }; };
in
test.run "Filter matches on platform" gemSet (set: functions.filterGemset {inherit ruby; groups = [];} set == gemSet))
( let gemSet = { test = { groups = ["x" "y"]; }; };
in
test.run "Filter excludes based on groups" gemSet (set: functions.filterGemset {inherit ruby; groups = ["a" "b"];} set == {}))
2017-05-01 16:07:42 +00:00
(test.run "bundlerEnv { name }" justName {
2017-05-15 16:36:30 +00:00
name = should.equal "test-0.1.2";
2017-05-01 16:07:42 +00:00
})
(test.run "bundlerEnv { pname }" pnamed
[
(should.haveKeys [ "name" "env" "postBuild" ])
{
2017-05-15 16:36:30 +00:00
name = should.equal "test-0.1.2";
env = should.beASet;
postBuild = should.havePrefix "/nix/store";
}
])
2017-05-01 16:07:42 +00:00
];
in
writeText "test-results.tap" (tap.output results)