|
| 1 | +package rbac |
| 2 | + |
| 3 | +import ( |
| 4 | + "github.com/gaia-pipeline/gaia" |
| 5 | + "gotest.tools/assert" |
| 6 | + "gotest.tools/assert/cmp" |
| 7 | + "sync" |
| 8 | + "testing" |
| 9 | + "time" |
| 10 | +) |
| 11 | + |
| 12 | +var testItem = gaia.RBACEvaluatedPermissions{ |
| 13 | + PipelineNamespace: { |
| 14 | + GetAction: map[gaia.RBACPolicyResource]string{ |
| 15 | + "*": "allow", |
| 16 | + }, |
| 17 | + }, |
| 18 | +} |
| 19 | + |
| 20 | +var testMap = map[string]cacheItem{ |
| 21 | + "item": { |
| 22 | + value: testItem, |
| 23 | + expiration: time.Now().Add(1 * time.Minute).UnixNano(), |
| 24 | + }, |
| 25 | + "item_expired": { |
| 26 | + value: testItem, |
| 27 | + expiration: time.Now().Add(-1 * time.Minute).UnixNano(), |
| 28 | + }, |
| 29 | +} |
| 30 | + |
| 31 | +func TestCache_Get_ValidItem_ReturnsValue(t *testing.T) { |
| 32 | + cache := cache{ |
| 33 | + expiration: time.Millisecond * 10, |
| 34 | + items: testMap, |
| 35 | + mu: sync.Mutex{}, |
| 36 | + } |
| 37 | + |
| 38 | + value, ok := cache.Get("item") |
| 39 | + |
| 40 | + assert.Check(t, cmp.DeepEqual(value, testMap["item"].value)) |
| 41 | + assert.Check(t, cmp.Equal(ok, true)) |
| 42 | +} |
| 43 | + |
| 44 | +func TestCache_Get_MissingItem_ReturnsEmptyStructAndFalse(t *testing.T) { |
| 45 | + cache := cache{ |
| 46 | + expiration: time.Millisecond * 10, |
| 47 | + items: map[string]cacheItem{}, |
| 48 | + mu: sync.Mutex{}, |
| 49 | + } |
| 50 | + |
| 51 | + value, ok := cache.Get("missing") |
| 52 | + |
| 53 | + assert.Check(t, cmp.DeepEqual(value, gaia.RBACEvaluatedPermissions{})) |
| 54 | + assert.Check(t, cmp.Equal(ok, false)) |
| 55 | +} |
| 56 | + |
| 57 | +func TestCache_Get_ExpiredItem_ReturnsEmptyStructAndFalse(t *testing.T) { |
| 58 | + cache := cache{ |
| 59 | + expiration: time.Millisecond * 10, |
| 60 | + items: testMap, |
| 61 | + mu: sync.Mutex{}, |
| 62 | + } |
| 63 | + |
| 64 | + value, ok := cache.Get("item_expired") |
| 65 | + |
| 66 | + assert.Check(t, cmp.DeepEqual(value, gaia.RBACEvaluatedPermissions{})) |
| 67 | + assert.Check(t, cmp.Equal(ok, false)) |
| 68 | +} |
| 69 | + |
| 70 | +func TestCache_Put_Item_ReturnsItem(t *testing.T) { |
| 71 | + cache := cache{ |
| 72 | + expiration: time.Minute * 1, |
| 73 | + items: map[string]cacheItem{}, |
| 74 | + mu: sync.Mutex{}, |
| 75 | + } |
| 76 | + |
| 77 | + value := cache.Put("item", testItem) |
| 78 | + |
| 79 | + assert.Check(t, cmp.DeepEqual(value, testItem)) |
| 80 | +} |
| 81 | + |
| 82 | +func TestCache_EvictExpired(t *testing.T) { |
| 83 | + cache := cache{ |
| 84 | + expiration: time.Minute * 1, |
| 85 | + items: map[string]cacheItem{ |
| 86 | + "expired_01": { |
| 87 | + value: testItem, |
| 88 | + expiration: time.Now().Add(-2 * time.Minute).UnixNano(), |
| 89 | + }, |
| 90 | + "valid_01": { |
| 91 | + value: testItem, |
| 92 | + expiration: time.Now().Add(2 * time.Minute).UnixNano(), |
| 93 | + }, |
| 94 | + "expired_02": { |
| 95 | + value: testItem, |
| 96 | + expiration: time.Now().Add(-2 * time.Minute).UnixNano(), |
| 97 | + }, |
| 98 | + }, |
| 99 | + mu: sync.Mutex{}, |
| 100 | + } |
| 101 | + |
| 102 | + cache.EvictExpired() |
| 103 | + |
| 104 | + _, p1 := cache.items["expired_01"] |
| 105 | + assert.Check(t, cmp.Equal(p1, false)) |
| 106 | + _, p2 := cache.items["valid_01"] |
| 107 | + assert.Check(t, cmp.Equal(p2, true)) |
| 108 | + _, p3 := cache.items["expired_01"] |
| 109 | + assert.Check(t, cmp.Equal(p3, false)) |
| 110 | +} |
| 111 | + |
| 112 | +func TestCache_ClearCache(t *testing.T) { |
| 113 | + cache := cache{ |
| 114 | + expiration: time.Minute * 1, |
| 115 | + items: map[string]cacheItem{ |
| 116 | + "expired_01": { |
| 117 | + value: testItem, |
| 118 | + expiration: time.Now().Add(-2 * time.Minute).UnixNano(), |
| 119 | + }, |
| 120 | + "valid_01": { |
| 121 | + value: testItem, |
| 122 | + expiration: time.Now().Add(2 * time.Minute).UnixNano(), |
| 123 | + }, |
| 124 | + }, |
| 125 | + mu: sync.Mutex{}, |
| 126 | + } |
| 127 | + |
| 128 | + cache.Clear() |
| 129 | + assert.Check(t, cmp.Len(cache.items, 0)) |
| 130 | +} |
0 commit comments