mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	 ee35ce86d0
			
		
	
	ee35ce86d0
	
	
	
		
			
			Rename all files to _test.go and rename the package to e2e_test. This makes the linter less strict about things like dot imports. Add some unused nolint directives to silence some warnings, these can be used to find untested options so someone could add tests for them. Fixes #14996 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package e2e_test
 | |
| 
 | |
| import (
 | |
| 	. "github.com/onsi/ginkgo"
 | |
| 	. "github.com/onsi/gomega"
 | |
| 	. "github.com/onsi/gomega/gexec"
 | |
| )
 | |
| 
 | |
| var _ = Describe("podman machine stop", func() {
 | |
| 	var (
 | |
| 		mb      *machineTestBuilder
 | |
| 		testDir string
 | |
| 	)
 | |
| 
 | |
| 	BeforeEach(func() {
 | |
| 		testDir, mb = setup()
 | |
| 	})
 | |
| 	AfterEach(func() {
 | |
| 		teardown(originalHomeDir, testDir, mb)
 | |
| 	})
 | |
| 
 | |
| 	It("stop bad name", func() {
 | |
| 		i := stopMachine{}
 | |
| 		reallyLongName := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
 | |
| 		session, err := mb.setName(reallyLongName).setCmd(&i).run()
 | |
| 		Expect(err).To(BeNil())
 | |
| 		Expect(session).To(Exit(125))
 | |
| 	})
 | |
| 
 | |
| 	It("Stop running machine", func() {
 | |
| 		i := new(initMachine)
 | |
| 		session, err := mb.setCmd(i.withImagePath(mb.imagePath).withNow()).run()
 | |
| 		Expect(err).To(BeNil())
 | |
| 		Expect(session).To(Exit(0))
 | |
| 
 | |
| 		stop := new(stopMachine)
 | |
| 		// Removing a running machine should fail
 | |
| 		stopSession, err := mb.setCmd(stop).run()
 | |
| 		Expect(err).To(BeNil())
 | |
| 		Expect(stopSession).To(Exit(0))
 | |
| 
 | |
| 		// Stopping it again should not result in an error
 | |
| 		stopAgain, err := mb.setCmd(stop).run()
 | |
| 		Expect(err).To(BeNil())
 | |
| 		Expect(stopAgain).To(Exit((0)))
 | |
| 	})
 | |
| })
 |