Jiri Simsa | d7616c9 | 2015-03-24 23:44:30 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Vanadium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style |
| 3 | // license that can be found in the LICENSE file. |
| 4 | |
Cosmos Nicolaou | 486d349 | 2014-09-30 22:21:20 -0700 | [diff] [blame] | 5 | package exec |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 6 | |
| 7 | import ( |
Bogdan Caprita | bf356d7 | 2015-01-08 17:28:48 -0800 | [diff] [blame] | 8 | "reflect" |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 9 | "testing" |
Bogdan Caprita | bf356d7 | 2015-01-08 17:28:48 -0800 | [diff] [blame] | 10 | |
Jiri Simsa | 6ac9522 | 2015-02-23 16:11:49 -0800 | [diff] [blame] | 11 | "v.io/v23/verror" |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 12 | ) |
| 13 | |
| 14 | func checkPresent(t *testing.T, c Config, k, wantV string) { |
| 15 | if v, err := c.Get(k); err != nil { |
| 16 | t.Errorf("Expected value %q for key %q, got error %v instead", wantV, k, err) |
| 17 | } else if v != wantV { |
| 18 | t.Errorf("Expected value %q for key %q, got %q instead", wantV, k, v) |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | func checkAbsent(t *testing.T, c Config, k string) { |
Todd Wang | 8fa3876 | 2015-03-25 14:04:59 -0700 | [diff] [blame] | 23 | if v, err := c.Get(k); verror.ErrorID(err) != verror.ErrNoExist.ID { |
Jiri Simsa | 074bf36 | 2015-02-17 09:29:45 -0800 | [diff] [blame] | 24 | t.Errorf("Expected (\"\", %v) for key %q, got (%q, %v) instead", verror.ErrNoExist, k, v, err) |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 25 | } |
| 26 | } |
| 27 | |
| 28 | // TestConfig checks that Set and Get work as expected. |
| 29 | func TestConfig(t *testing.T) { |
Cosmos Nicolaou | 486d349 | 2014-09-30 22:21:20 -0700 | [diff] [blame] | 30 | c := NewConfig() |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 31 | c.Set("foo", "bar") |
| 32 | checkPresent(t, c, "foo", "bar") |
| 33 | checkAbsent(t, c, "food") |
| 34 | c.Set("foo", "baz") |
| 35 | checkPresent(t, c, "foo", "baz") |
Jiri Simsa | 3789339 | 2014-11-07 10:55:45 -0800 | [diff] [blame] | 36 | c.Clear("foo") |
| 37 | checkAbsent(t, c, "foo") |
Bogdan Caprita | bf356d7 | 2015-01-08 17:28:48 -0800 | [diff] [blame] | 38 | if want, got := map[string]string{}, c.Dump(); !reflect.DeepEqual(want, got) { |
| 39 | t.Errorf("Expected %v for Dump, got %v instead", want, got) |
| 40 | } |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | // TestSerialize checks that serializing the config and merging from a |
| 44 | // serialized config work as expected. |
| 45 | func TestSerialize(t *testing.T) { |
Cosmos Nicolaou | 486d349 | 2014-09-30 22:21:20 -0700 | [diff] [blame] | 46 | c := NewConfig() |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 47 | c.Set("k1", "v1") |
| 48 | c.Set("k2", "v2") |
| 49 | s, err := c.Serialize() |
| 50 | if err != nil { |
| 51 | t.Fatalf("Failed to serialize: %v", err) |
| 52 | } |
Cosmos Nicolaou | 486d349 | 2014-09-30 22:21:20 -0700 | [diff] [blame] | 53 | readC := NewConfig() |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 54 | if err := readC.MergeFrom(s); err != nil { |
| 55 | t.Fatalf("Failed to deserialize: %v", err) |
| 56 | } |
| 57 | checkPresent(t, readC, "k1", "v1") |
| 58 | checkPresent(t, readC, "k2", "v2") |
| 59 | |
| 60 | readC.Set("k2", "newv2") // This should be overwritten by the next merge. |
| 61 | checkPresent(t, readC, "k2", "newv2") |
| 62 | readC.Set("k3", "v3") // This should survive the next merge. |
| 63 | |
| 64 | c.Set("k1", "newv1") // This should overwrite v1 in the next merge. |
| 65 | c.Set("k4", "v4") // This should be added following the next merge. |
| 66 | s, err = c.Serialize() |
| 67 | if err != nil { |
| 68 | t.Fatalf("Failed to serialize: %v", err) |
| 69 | } |
| 70 | if err := readC.MergeFrom(s); err != nil { |
| 71 | t.Fatalf("Failed to deserialize: %v", err) |
| 72 | } |
| 73 | checkPresent(t, readC, "k1", "newv1") |
| 74 | checkPresent(t, readC, "k2", "v2") |
| 75 | checkPresent(t, readC, "k3", "v3") |
| 76 | checkPresent(t, readC, "k4", "v4") |
Bogdan Caprita | bf356d7 | 2015-01-08 17:28:48 -0800 | [diff] [blame] | 77 | if want, got := map[string]string{"k1": "newv1", "k2": "v2", "k3": "v3", "k4": "v4"}, readC.Dump(); !reflect.DeepEqual(want, got) { |
| 78 | t.Errorf("Expected %v for Dump, got %v instead", want, got) |
| 79 | } |
Bogdan Caprita | a4d9ee4 | 2014-06-20 16:42:53 -0700 | [diff] [blame] | 80 | } |