mirror of https://github.com/containers/podman.git
Update machine start tests
Start machine that is already running Start bad name Signed-off-by: Ashley Cui <acui@redhat.com>
This commit is contained in:
parent
53b2b0222d
commit
8b29901316
|
|
@ -54,4 +54,34 @@ var _ = Describe("podman machine start", func() {
|
||||||
Expect(startSession).To(Exit(0))
|
Expect(startSession).To(Exit(0))
|
||||||
Expect(startSession.outputToStringSlice()).To(HaveLen(1))
|
Expect(startSession.outputToStringSlice()).To(HaveLen(1))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("bad start name", func() {
|
||||||
|
i := startMachine{}
|
||||||
|
reallyLongName := "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||||
|
session, err := mb.setName(reallyLongName).setCmd(&i).run()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(session).To(Exit(125))
|
||||||
|
Expect(session.errorToString()).To(ContainSubstring("VM does not exist"))
|
||||||
|
})
|
||||||
|
|
||||||
|
It("start machine already started", func() {
|
||||||
|
i := new(initMachine)
|
||||||
|
session, err := mb.setCmd(i.withImagePath(mb.imagePath)).run()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(session).To(Exit(0))
|
||||||
|
s := new(startMachine)
|
||||||
|
startSession, err := mb.setCmd(s).run()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(startSession).To(Exit(0))
|
||||||
|
|
||||||
|
info, ec, err := mb.toQemuInspectInfo()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(ec).To(BeZero())
|
||||||
|
Expect(info[0].State).To(Equal(machine.Running))
|
||||||
|
|
||||||
|
startSession, err = mb.setCmd(s).run()
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(startSession).To(Exit(125))
|
||||||
|
Expect(startSession.errorToString()).To(ContainSubstring("VM already running or starting"))
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue