Best Python code snippet using localstack_python
test_docker.py
Source:test_docker.py  
...205        assert tmpdir.join("foo.log").isfile(), "foo.log was not created in mounted dir"206    def test_copy_into_container(self, tmpdir, docker_client: ContainerClient, create_container):207        local_path = tmpdir.join("myfile.txt")208        container_path = "/tmp/myfile_differentpath.txt"209        self._test_copy_into_container(210            docker_client,211            create_container,212            ["cat", container_path],213            local_path,214            local_path,215            container_path,216        )217    def test_copy_into_non_existent_container(self, tmpdir, docker_client: ContainerClient):218        local_path = tmpdir.mkdir("test_dir")219        file_path = local_path.join("test_file")220        with file_path.open(mode="w") as fd:221            fd.write("foobared\n")222        with pytest.raises(NoSuchContainer):223            docker_client.copy_into_container(224                "hopefully_non_existent_container_%s" % short_uid(), str(file_path), "test_file"225            )226    def test_copy_into_container_without_target_filename(227        self, tmpdir, docker_client: ContainerClient, create_container228    ):229        local_path = tmpdir.join("myfile.txt")230        container_path = "/tmp"231        self._test_copy_into_container(232            docker_client,233            create_container,234            ["cat", "/tmp/myfile.txt"],235            local_path,236            local_path,237            container_path,238        )239    def test_copy_directory_into_container(240        self, tmpdir, docker_client: ContainerClient, create_container241    ):242        local_path = tmpdir.join("fancy_folder")243        local_path.mkdir()244        file_path = local_path.join("myfile.txt")245        container_path = "/tmp/fancy_other_folder"246        self._test_copy_into_container(247            docker_client,248            create_container,249            ["cat", "/tmp/fancy_other_folder/myfile.txt"],250            file_path,251            local_path,252            container_path,253        )254    def _test_copy_into_container(255        self, docker_client, create_container, command, file_path, local_path, container_path256    ):257        c = create_container("alpine", command=command)258        with file_path.open(mode="w") as fd:259            fd.write("foobared\n")260        docker_client.copy_into_container(c.container_name, str(local_path), container_path)261        output, _ = docker_client.start_container(c.container_id, attach=True)262        output = output.decode(config.DEFAULT_ENCODING)263        assert "foobared" in output264    def test_copy_into_container_with_existing_target(265        self, tmpdir, docker_client: ContainerClient, dummy_container266    ):267        local_path = tmpdir.join("myfile.txt")268        container_path = "/tmp/myfile.txt"...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
