|
17 | 17 | package oci
|
18 | 18 |
|
19 | 19 | import (
|
| 20 | + "context" |
| 21 | + "encoding/json" |
| 22 | + "io/ioutil" |
| 23 | + "log" |
| 24 | + "os" |
| 25 | + "reflect" |
20 | 26 | "testing"
|
21 | 27 |
|
| 28 | + "github.com/containerd/containerd/containers" |
| 29 | + "github.com/containerd/containerd/namespaces" |
22 | 30 | specs "github.com/opencontainers/runtime-spec/specs-go"
|
23 | 31 | )
|
24 | 32 |
|
@@ -87,3 +95,75 @@ func TestWithMounts(t *testing.T) {
|
87 | 95 | t.Fatal("invaid mount")
|
88 | 96 | }
|
89 | 97 | }
|
| 98 | + |
| 99 | +func TestWithDefaultSpec(t *testing.T) { |
| 100 | + t.Parallel() |
| 101 | + var ( |
| 102 | + s Spec |
| 103 | + c = containers.Container{ID: "TestWithDefaultSpec"} |
| 104 | + ctx = namespaces.WithNamespace(context.Background(), "test") |
| 105 | + ) |
| 106 | + |
| 107 | + if err := ApplyOpts(ctx, nil, &c, &s, WithDefaultSpec()); err != nil { |
| 108 | + t.Fatal(err) |
| 109 | + } |
| 110 | + |
| 111 | + expected, err := createDefaultSpec(ctx, c.ID) |
| 112 | + if err != nil { |
| 113 | + t.Fatal(err) |
| 114 | + } |
| 115 | + |
| 116 | + if reflect.DeepEqual(s, Spec{}) { |
| 117 | + t.Fatalf("spec should not be empty") |
| 118 | + } |
| 119 | + |
| 120 | + if !reflect.DeepEqual(&s, expected) { |
| 121 | + t.Fatalf("spec from option differs from default: \n%#v != \n%#v", &s, expected) |
| 122 | + } |
| 123 | +} |
| 124 | + |
| 125 | +func TestWithSpecFromFile(t *testing.T) { |
| 126 | + t.Parallel() |
| 127 | + var ( |
| 128 | + s Spec |
| 129 | + c = containers.Container{ID: "TestWithDefaultSpec"} |
| 130 | + ctx = namespaces.WithNamespace(context.Background(), "test") |
| 131 | + ) |
| 132 | + |
| 133 | + fp, err := ioutil.TempFile("", "testwithdefaultspec.json") |
| 134 | + if err != nil { |
| 135 | + t.Fatal(err) |
| 136 | + } |
| 137 | + defer fp.Close() |
| 138 | + defer func() { |
| 139 | + if err := os.Remove(fp.Name()); err != nil { |
| 140 | + log.Printf("failed to remove tempfile %v: %v", fp.Name(), err) |
| 141 | + } |
| 142 | + }() |
| 143 | + |
| 144 | + expected, err := GenerateSpec(ctx, nil, &c) |
| 145 | + if err != nil { |
| 146 | + t.Fatal(err) |
| 147 | + } |
| 148 | + |
| 149 | + p, err := json.Marshal(expected) |
| 150 | + if err != nil { |
| 151 | + t.Fatal(err) |
| 152 | + } |
| 153 | + |
| 154 | + if _, err := fp.Write(p); err != nil { |
| 155 | + t.Fatal(err) |
| 156 | + } |
| 157 | + |
| 158 | + if err := ApplyOpts(ctx, nil, &c, &s, WithSpecFromFile(fp.Name())); err != nil { |
| 159 | + t.Fatal(err) |
| 160 | + } |
| 161 | + |
| 162 | + if reflect.DeepEqual(s, Spec{}) { |
| 163 | + t.Fatalf("spec should not be empty") |
| 164 | + } |
| 165 | + |
| 166 | + if !reflect.DeepEqual(&s, expected) { |
| 167 | + t.Fatalf("spec from option differs from default: \n%#v != \n%#v", &s, expected) |
| 168 | + } |
| 169 | +} |
0 commit comments