mirror of
https://github.com/rancher/os.git
synced 2025-09-16 06:59:12 +00:00
Add tests for when state fails to mount
This commit is contained in:
15
tests/bad_state_test.go
Normal file
15
tests/bad_state_test.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package integration
|
||||
|
||||
import . "gopkg.in/check.v1"
|
||||
|
||||
func (s *QemuSuite) TestBadState(c *C) {
|
||||
err := s.RunQemu("--no-format", "--append", "rancher.state.dev=LABEL=BAD_STATE")
|
||||
c.Assert(err, IsNil)
|
||||
s.CheckCall(c, "mount | grep /var/lib/docker | grep rootfs")
|
||||
}
|
||||
|
||||
func (s *QemuSuite) TestBadStateWithWait(c *C) {
|
||||
err := s.RunQemu("--no-format", "--append", "rancher.state.dev=LABEL=BAD_STATE", "--append", "rancher.state.wait")
|
||||
c.Assert(err, IsNil)
|
||||
s.CheckCall(c, "mount | grep /var/lib/docker | grep rootfs")
|
||||
}
|
Reference in New Issue
Block a user