1
0
mirror of https://github.com/rancher/os.git synced 2025-09-17 23:48:09 +00:00

Merge pull request #1313 from joshwget/bad-state-tests

Add tests for when state fails to mount
This commit is contained in:
Darren Shepherd
2016-10-14 11:37:25 -07:00
committed by GitHub

15
tests/bad_state_test.go Normal file
View 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")
}