25 lines
		
	
	
		
			630 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			630 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| import ./make-test-python.nix ({ pkgs, ... }: {
 | |
|   name = "memcached";
 | |
| 
 | |
|   machine = {
 | |
|     imports = [ ../modules/profiles/minimal.nix ];
 | |
|     services.memcached.enable = true;
 | |
|   };
 | |
| 
 | |
|   testScript = let
 | |
|     testScript = pkgs.writers.writePython3 "test_memcache" {
 | |
|       libraries = with pkgs.python3Packages; [ memcached ];
 | |
|     } ''
 | |
|       import memcache
 | |
|       c = memcache.Client(['localhost:11211'])
 | |
|       c.set('key', 'value')
 | |
|       assert 'value' == c.get('key')
 | |
|     '';
 | |
|   in ''
 | |
|     machine.start()
 | |
|     machine.wait_for_unit("memcached.service")
 | |
|     machine.wait_for_open_port(11211)
 | |
|     machine.succeed("${testScript}")
 | |
|   '';
 | |
| })
 | 
