| 
									
										
										
										
											2009-05-24 10:57:46 +00:00
										 |  |  | let inherit (builtins) add; in | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  | with import ./default.nix; | 
					
						
							| 
									
										
										
										
											2009-03-06 23:21:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  | runTests { | 
					
						
							| 
									
										
										
										
											2009-03-06 23:21:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testId = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = id 1; | 
					
						
							|  |  |  |     expected = 1; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testConst = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = const 2 3; | 
					
						
							|  |  |  |     expected = 2; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2012-05-13 19:10:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   /*
 | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testOr = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = or true false; | 
					
						
							|  |  |  |     expected = true; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2012-05-13 19:10:57 +00:00
										 |  |  |   */ | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testAnd = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = and true false; | 
					
						
							|  |  |  |     expected = false; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  |    | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testFix = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = fix (x: {a = if x ? a then "a" else "b";}); | 
					
						
							|  |  |  |     expected = {a = "a";}; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testConcatMapStrings = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = concatMapStrings (x: x + ";") ["a" "b" "c"]; | 
					
						
							|  |  |  |     expected = "a;b;c;"; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testConcatStringsSep = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = concatStringsSep "," ["a" "b" "c"]; | 
					
						
							|  |  |  |     expected = "a,b,c"; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testFilter = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = filter (x: x != "a") ["a" "b" "c" "a"]; | 
					
						
							|  |  |  |     expected = ["b" "c"]; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testFold = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr = fold (builtins.add) 0 (range 0 100); | 
					
						
							|  |  |  |     expected = 5050; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 21:47:14 +00:00
										 |  |  |   testTake = testAllTrue [ | 
					
						
							|  |  |  |     ([] == (take 0 [  1 2 3 ])) | 
					
						
							|  |  |  |     ([1] == (take 1 [  1 2 3 ])) | 
					
						
							|  |  |  |     ([ 1 2 ] == (take 2 [  1 2 3 ])) | 
					
						
							|  |  |  |     ([ 1 2 3 ] == (take 3 [  1 2 3 ])) | 
					
						
							|  |  |  |     ([ 1 2 3 ] == (take 4 [  1 2 3 ])) | 
					
						
							|  |  |  |   ]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-28 14:40:24 +02:00
										 |  |  |   testFoldAttrs = { | 
					
						
							|  |  |  |     expr = foldAttrs (n: a: [n] ++ a) [] [ | 
					
						
							|  |  |  |     { a = 2; b = 7; } | 
					
						
							|  |  |  |     { a = 3;        c = 8; } | 
					
						
							|  |  |  |     ]; | 
					
						
							|  |  |  |     expected = { a = [ 2 3 ]; b = [7]; c = [8];}; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2009-12-08 21:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-22 21:28:41 +00:00
										 |  |  |   testOverridableDelayableArgsTest = { | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |     expr =  | 
					
						
							|  |  |  |       let res1 = defaultOverridableDelayableArgs id {}; | 
					
						
							|  |  |  |           res2 = defaultOverridableDelayableArgs id { a = 7; }; | 
					
						
							|  |  |  |           res3 = let x = defaultOverridableDelayableArgs id { a = 7; }; | 
					
						
							|  |  |  |                  in (x.merge) { b = 10; }; | 
					
						
							|  |  |  |           res4 = let x = defaultOverridableDelayableArgs id { a = 7; }; | 
					
						
							|  |  |  |                 in (x.merge) ( x: { b = 10; }); | 
					
						
							|  |  |  |           res5 = let x = defaultOverridableDelayableArgs id { a = 7; }; | 
					
						
							| 
									
										
										
										
											2009-05-24 10:57:46 +00:00
										 |  |  |                 in (x.merge) ( x: { a = add x.a 3; }); | 
					
						
							|  |  |  |           res6 = let x = defaultOverridableDelayableArgs id { a = 7; mergeAttrBy = { a = add; }; }; | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |                      y = x.merge {}; | 
					
						
							|  |  |  |                 in (y.merge) { a = 10; }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           resRem7 = res6.replace (a : removeAttrs a ["a"]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-24 10:57:46 +00:00
										 |  |  |           resReplace6 = let x = defaultOverridableDelayableArgs id { a = 7; mergeAttrBy = { a = add; }; }; | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |                             x2 = x.merge { a = 20; }; # now we have 27 | 
					
						
							|  |  |  |                         in (x2.replace) { a = 10; }; # and override the value by 10 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           # fixed tests (delayed args): (when using them add some comments, please) | 
					
						
							|  |  |  |           resFixed1 =  | 
					
						
							|  |  |  |                 let x = defaultOverridableDelayableArgs id ( x : { a = 7; c = x.fixed.b; }); | 
					
						
							|  |  |  |                     y = x.merge (x : { name = "name-${builtins.toString x.fixed.c}"; }); | 
					
						
							|  |  |  |                 in (y.merge) { b = 10; }; | 
					
						
							|  |  |  |           strip = attrs : removeAttrs attrs ["merge" "replace"]; | 
					
						
							|  |  |  |       in all id | 
					
						
							| 
									
										
										
										
											2012-08-13 18:08:35 -04:00
										 |  |  |         [ ((strip res1) == { }) | 
					
						
							|  |  |  |           ((strip res2) == { a = 7; }) | 
					
						
							|  |  |  |           ((strip res3) == { a = 7; b = 10; }) | 
					
						
							|  |  |  |           ((strip res4) == { a = 7; b = 10; }) | 
					
						
							|  |  |  |           ((strip res5) == { a = 10; }) | 
					
						
							|  |  |  |           ((strip res6) == { a = 17; }) | 
					
						
							|  |  |  |           ((strip resRem7) == {}) | 
					
						
							|  |  |  |           ((strip resFixed1) == { a = 7; b = 10; c =10; name = "name-10"; }) | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |         ]; | 
					
						
							|  |  |  |     expected = true; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2012-11-20 13:54:38 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |   testSort = { | 
					
						
							|  |  |  |     expr = sort builtins.lessThan [ 40 2 30 42 ]; | 
					
						
							|  |  |  |     expected = [2 30 40 42]; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2009-03-31 13:03:50 +00:00
										 |  |  |    | 
					
						
							|  |  |  | } |