]> ruderich.org/simon Gitweb - safcm/safcm.git/blobdiff - cmd/safcm/sync_changes_test.go
changes: shorten output to one line with quiet and only silent commands
[safcm/safcm.git] / cmd / safcm / sync_changes_test.go
index c1e4aef899e257eeef2cb832282b6cca9b29770a..6c7ba392aac7b36b01399eb7e1d8c6fba4af9b8c 100644 (file)
@@ -28,6 +28,7 @@ func TestFormatChanges(t *testing.T) {
        tests := []struct {
                name   string
                dryRun bool
+               quiet  bool
                isTTY  bool
                resp   safcm.MsgSyncResp
                exp    string
@@ -40,6 +41,7 @@ func TestFormatChanges(t *testing.T) {
                        "no changes",
                        false,
                        false,
+                       false,
                        safcm.MsgSyncResp{},
                        "",
                },
@@ -48,6 +50,7 @@ func TestFormatChanges(t *testing.T) {
                        "changes",
                        false,
                        false,
+                       false,
                        safcm.MsgSyncResp{
                                FileChanges: []safcm.FileChange{
                                        {
@@ -97,6 +100,59 @@ func TestFormatChanges(t *testing.T) {
                        },
                        "\nchanged 1 file(s):\n\"created\": created, file, user(1000) group(2000), 0644\n\ninstalled 2 package(s):\n\"package-one\"\n\"package-two\"\n\nmodified 3 service(s):\n\"service-one\": started\n\"service-two\": enabled\n\"service-three\": started, enabled\n\nexecuted 2 command(s):\n\"fake command\":\n   > fake output\n   > \\ No newline at end of file\n\"fake command with no output\"\n",
                },
+
+               {
+                       "command changes only, dry-run",
+                       true,
+                       false,
+                       false,
+                       safcm.MsgSyncResp{
+                               CommandChanges: []safcm.CommandChange{
+                                       {
+                                               Command: "fake command",
+                                       },
+                                       {
+                                               Command: "fake command with no output",
+                                       },
+                                       {
+                                               Command: "fake command with newline",
+                                       },
+                                       {
+                                               Command: "fake command with more output",
+                                       },
+                                       {
+                                               Command: "fake failed command",
+                                       },
+                               },
+                       },
+                       "\nexecuted 5 command(s): (dry-run)\n\"fake command\"\n\"fake command with no output\"\n\"fake command with newline\"\n\"fake command with more output\"\n\"fake failed command\"\n",
+               },
+               {
+                       "command changes only, quiet & dry-run",
+                       true,
+                       true,
+                       false,
+                       safcm.MsgSyncResp{
+                               CommandChanges: []safcm.CommandChange{
+                                       {
+                                               Command: "fake command",
+                                       },
+                                       {
+                                               Command: "fake command with no output",
+                                       },
+                                       {
+                                               Command: "fake command with newline",
+                                       },
+                                       {
+                                               Command: "fake command with more output",
+                                       },
+                                       {
+                                               Command: "fake failed command",
+                                       },
+                               },
+                       },
+                       "executed 5 command(s) (dry-run)\n",
+               },
        }
 
        for _, tc := range tests {
@@ -104,6 +160,7 @@ func TestFormatChanges(t *testing.T) {
                        s := &Sync{
                                config: &config.Config{
                                        DryRun: tc.dryRun,
+                                       Quiet:  tc.quiet,
                                },
                                isTTY: tc.isTTY,
                        }