summaryrefslogtreecommitdiff
path: root/runtime/execdriver/lxc/info_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/execdriver/lxc/info_test.go')
-rw-r--r--runtime/execdriver/lxc/info_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/runtime/execdriver/lxc/info_test.go b/runtime/execdriver/lxc/info_test.go
new file mode 100644
index 0000000000..edafc02511
--- /dev/null
+++ b/runtime/execdriver/lxc/info_test.go
@@ -0,0 +1,36 @@
+package lxc
+
+import (
+ "testing"
+)
+
+func TestParseRunningInfo(t *testing.T) {
+ raw := `
+ state: RUNNING
+ pid: 50`
+
+ info, err := parseLxcInfo(raw)
+ if err != nil {
+ t.Fatal(err)
+ }
+ if !info.Running {
+ t.Fatal("info should return a running state")
+ }
+ if info.Pid != 50 {
+ t.Fatalf("info should have pid 50 got %d", info.Pid)
+ }
+}
+
+func TestEmptyInfo(t *testing.T) {
+ _, err := parseLxcInfo("")
+ if err == nil {
+ t.Fatal("error should not be nil")
+ }
+}
+
+func TestBadInfo(t *testing.T) {
+ _, err := parseLxcInfo("state")
+ if err != nil {
+ t.Fatal(err)
+ }
+}