| 
									
										
										
										
											2018-11-11 17:41:11 +09:00
										 |  |  | { system ? builtins.currentSystem, | 
					
						
							|  |  |  |   config ? {}, | 
					
						
							|  |  |  |   pkgs ? import ../.. { inherit system config; } | 
					
						
							|  |  |  | }: | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-06 19:42:58 +01:00
										 |  |  | with import ../lib/testing-python.nix { inherit system pkgs; }; | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  | with pkgs.lib; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  |   inherit (import ./ssh-keys.nix pkgs) | 
					
						
							|  |  |  |     snakeOilPrivateKey snakeOilPublicKey; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  |   metadataDrive = pkgs.stdenv.mkDerivation { | 
					
						
							|  |  |  |     name = "metadata"; | 
					
						
							|  |  |  |     buildCommand = ''
 | 
					
						
							|  |  |  |       mkdir -p $out/iso | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       cat << EOF > $out/iso/user-data | 
					
						
							|  |  |  |       #cloud-config | 
					
						
							|  |  |  |       write_files: | 
					
						
							|  |  |  |       -   content: | | 
					
						
							|  |  |  |                 cloudinit | 
					
						
							|  |  |  |           path: /tmp/cloudinit-write-file | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |       users: | 
					
						
							|  |  |  |         - default | 
					
						
							|  |  |  |         - name: nixos | 
					
						
							|  |  |  |           ssh_authorized_keys: | 
					
						
							|  |  |  |             - "${snakeOilPublicKey}" | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  |       EOF | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       cat << EOF > $out/iso/meta-data | 
					
						
							|  |  |  |       instance-id: iid-local01 | 
					
						
							|  |  |  |       local-hostname: "test" | 
					
						
							|  |  |  |       public-keys: | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  |         - "${snakeOilPublicKey}" | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  |       EOF | 
					
						
							|  |  |  |       ${pkgs.cdrkit}/bin/genisoimage -volid cidata -joliet -rock -o $out/metadata.iso $out/iso | 
					
						
							|  |  |  |       '';
 | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | in makeTest { | 
					
						
							| 
									
										
										
										
											2019-11-06 19:42:58 +01:00
										 |  |  |   name = "cloud-init"; | 
					
						
							| 
									
										
										
										
											2021-01-10 20:08:30 +01:00
										 |  |  |   meta = with pkgs.lib.maintainers; { | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  |     maintainers = [ lewo ]; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  |   machine = { ... }: | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     virtualisation.qemu.options = [ "-cdrom" "${metadataDrive}/metadata.iso" ]; | 
					
						
							|  |  |  |     services.cloud-init.enable = true; | 
					
						
							|  |  |  |     services.openssh.enable = true; | 
					
						
							| 
									
										
										
										
											2020-10-15 00:24:39 +02:00
										 |  |  |     networking.hostName = ""; | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  |   }; | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  |   testScript = ''
 | 
					
						
							| 
									
										
										
										
											2020-11-30 20:00:29 +03:00
										 |  |  |     # To wait until cloud-init terminates its run | 
					
						
							|  |  |  |     unnamed.wait_for_unit("cloud-final.service") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     unnamed.succeed("cat /tmp/cloudinit-write-file | grep -q 'cloudinit'") | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # install snakeoil ssh key and provision .ssh/config file | 
					
						
							| 
									
										
										
										
											2020-11-30 20:00:29 +03:00
										 |  |  |     unnamed.succeed("mkdir -p ~/.ssh") | 
					
						
							|  |  |  |     unnamed.succeed( | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  |         "cat ${snakeOilPrivateKey} > ~/.ssh/id_snakeoil" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2020-11-30 20:00:29 +03:00
										 |  |  |     unnamed.succeed("chmod 600 ~/.ssh/id_snakeoil") | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-30 20:00:29 +03:00
										 |  |  |     unnamed.wait_for_unit("sshd.service") | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  |     # we should be able to log in as the root user, as well as the created nixos user | 
					
						
							| 
									
										
										
										
											2020-11-30 20:00:29 +03:00
										 |  |  |     unnamed.succeed( | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  |         "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o IdentityFile=~/.ssh/id_snakeoil root@localhost 'true'" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2020-11-30 20:00:29 +03:00
										 |  |  |     unnamed.succeed( | 
					
						
							| 
									
										
										
										
											2020-01-18 01:09:49 +01:00
										 |  |  |         "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o IdentityFile=~/.ssh/id_snakeoil nixos@localhost 'true'" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2020-10-15 00:24:39 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # test changing hostname via cloud-init worked | 
					
						
							|  |  |  |     assert ( | 
					
						
							| 
									
										
										
										
											2020-11-30 20:00:29 +03:00
										 |  |  |         unnamed.succeed( | 
					
						
							| 
									
										
										
										
											2020-10-15 00:24:39 +02:00
										 |  |  |             "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o IdentityFile=~/.ssh/id_snakeoil nixos@localhost 'hostname'" | 
					
						
							|  |  |  |         ).strip() | 
					
						
							|  |  |  |         == "test" | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2017-02-25 15:32:06 +01:00
										 |  |  |   '';
 | 
					
						
							|  |  |  | } |