]> ruderich.org/simon Gitweb - safcm/safcm.git/blobdiff - cmd/safcm-remote/sync/commands_test.go
safcm: add experimental support to sync from Windows hosts
[safcm/safcm.git] / cmd / safcm-remote / sync / commands_test.go
index ba7f4a2e89ec47e16fec11f88f41aad4577a2617..0bd0949b020b922976744ea9f85e3beacf381cee 100644 (file)
@@ -54,7 +54,7 @@ func TestSyncCommands(t *testing.T) {
        }{
 
                // NOTE: Also update MsgSyncResp in safcm test cases when
-               // changing anything here!
+               // changing the MsgSyncResp struct!
 
                {
                        "successful command",
@@ -67,7 +67,8 @@ func TestSyncCommands(t *testing.T) {
                                },
                                Commands: []*safcm.Command{
                                        {
-                                               Cmd: "echo; env | grep SAFCM_",
+                                               OrigGroup: "group",
+                                               Cmd:       "echo; env | grep SAFCM_",
                                        },
                                },
                        },
@@ -84,8 +85,8 @@ func TestSyncCommands(t *testing.T) {
                                Env: env,
                        }},
                        []string{
-                               `3: sync remote: commands: running "/bin/sh" "-c" "echo; env | grep SAFCM_"`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr",
+                               `3: commands: running "/bin/sh" "-c" "echo; env | grep SAFCM_" (group)`,
+                               "5: commands: command output:\nfake stdout/stderr",
                        },
                        safcm.MsgSyncResp{
                                CommandChanges: []safcm.CommandChange{
@@ -109,7 +110,8 @@ func TestSyncCommands(t *testing.T) {
                                },
                                Commands: []*safcm.Command{
                                        {
-                                               Cmd: "echo; env | grep SAFCM_",
+                                               OrigGroup: "group",
+                                               Cmd:       "echo; env | grep SAFCM_",
                                        },
                                },
                        },
@@ -140,7 +142,8 @@ func TestSyncCommands(t *testing.T) {
                                },
                                Commands: []*safcm.Command{
                                        {
-                                               Cmd: "echo hi; false",
+                                               OrigGroup: "group",
+                                               Cmd:       "echo hi; false",
                                        },
                                },
                        },
@@ -157,8 +160,8 @@ func TestSyncCommands(t *testing.T) {
                                Env: env,
                        }},
                        []string{
-                               `3: sync remote: commands: running "/bin/sh" "-c" "echo hi; false"`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr",
+                               `3: commands: running "/bin/sh" "-c" "echo hi; false" (group)`,
+                               "5: commands: command output:\nfake stdout/stderr",
                        },
                        safcm.MsgSyncResp{
                                CommandChanges: []safcm.CommandChange{
@@ -183,7 +186,8 @@ func TestSyncCommands(t *testing.T) {
                                },
                                Commands: []*safcm.Command{
                                        {
-                                               Cmd: "echo hi; false",
+                                               OrigGroup: "group",
+                                               Cmd:       "echo hi; false",
                                        },
                                },
                        },
@@ -214,13 +218,17 @@ func TestSyncCommands(t *testing.T) {
                                },
                                Commands: []*safcm.Command{
                                        {
-                                               Cmd: "echo first",
+                                               OrigGroup: "group1",
+                                               Cmd:       "echo first",
                                        }, {
-                                               Cmd: "echo second",
+                                               OrigGroup: "group2",
+                                               Cmd:       "echo second",
                                        }, {
-                                               Cmd: "false",
+                                               OrigGroup: "group3",
+                                               Cmd:       "false",
                                        }, {
-                                               Cmd: "echo third",
+                                               OrigGroup: "group4",
+                                               Cmd:       "echo third",
                                        },
                                },
                        },
@@ -263,11 +271,11 @@ func TestSyncCommands(t *testing.T) {
                                Env: env,
                        }},
                        []string{
-                               `3: sync remote: commands: running "/bin/sh" "-c" "echo first"`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr first",
-                               `3: sync remote: commands: running "/bin/sh" "-c" "echo second"`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr second",
-                               `3: sync remote: commands: running "/bin/sh" "-c" "false"`,
+                               `3: commands: running "/bin/sh" "-c" "echo first" (group1)`,
+                               "5: commands: command output:\nfake stdout/stderr first",
+                               `3: commands: running "/bin/sh" "-c" "echo second" (group2)`,
+                               "5: commands: command output:\nfake stdout/stderr second",
+                               `3: commands: running "/bin/sh" "-c" "false" (group3)`,
                        },
                        safcm.MsgSyncResp{
                                CommandChanges: []safcm.CommandChange{
@@ -333,7 +341,8 @@ func TestSyncCommands(t *testing.T) {
                                },
                                Commands: []*safcm.Command{
                                        {
-                                               Cmd: "echo; env | grep SAFCM_",
+                                               OrigGroup: "group",
+                                               Cmd:       "echo; env | grep SAFCM_",
                                        },
                                },
                        },
@@ -379,12 +388,12 @@ func TestSyncCommands(t *testing.T) {
                                Env: env,
                        }},
                        []string{
-                               `3: sync remote: commands: running "/bin/sh" "-c" "echo trigger ."`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr .",
-                               `3: sync remote: commands: running "/bin/sh" "-c" "echo trigger dir"`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr dir",
-                               `3: sync remote: commands: running "/bin/sh" "-c" "echo; env | grep SAFCM_"`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr",
+                               `3: commands: running "/bin/sh" "-c" "echo trigger ." (".")`,
+                               "5: commands: command output:\nfake stdout/stderr .",
+                               `3: commands: running "/bin/sh" "-c" "echo trigger dir" ("dir")`,
+                               "5: commands: command output:\nfake stdout/stderr dir",
+                               `3: commands: running "/bin/sh" "-c" "echo; env | grep SAFCM_" (group)`,
+                               "5: commands: command output:\nfake stdout/stderr",
                        },
                        safcm.MsgSyncResp{
                                CommandChanges: []safcm.CommandChange{
@@ -451,7 +460,8 @@ func TestSyncCommands(t *testing.T) {
                                },
                                Commands: []*safcm.Command{
                                        {
-                                               Cmd: "echo; env | grep SAFCM_",
+                                               OrigGroup: "group",
+                                               Cmd:       "echo; env | grep SAFCM_",
                                        },
                                },
                        },
@@ -487,10 +497,10 @@ func TestSyncCommands(t *testing.T) {
                                Env: env,
                        }},
                        []string{
-                               `3: sync remote: commands: running "/bin/sh" "-c" "echo trigger ."`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr .",
-                               `3: sync remote: commands: running "/bin/sh" "-c" "false"`,
-                               "5: sync remote: commands: command output:\nfake stdout/stderr dir",
+                               `3: commands: running "/bin/sh" "-c" "echo trigger ." (".")`,
+                               "5: commands: command output:\nfake stdout/stderr .",
+                               `3: commands: running "/bin/sh" "-c" "false" ("dir")`,
+                               "5: commands: command output:\nfake stdout/stderr dir",
                        },
                        safcm.MsgSyncResp{
                                CommandChanges: []safcm.CommandChange{