|
| 1 | +/* |
| 2 | + Copyright The containerd Authors. |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +*/ |
| 16 | + |
| 17 | +package containerd |
| 18 | + |
| 19 | +import ( |
| 20 | + "context" |
| 21 | + "testing" |
| 22 | + |
| 23 | + "github.com/containerd/containerd/linux/runctypes" |
| 24 | +) |
| 25 | + |
| 26 | +func TestWithNoNewKeyringAddsNoNewKeyringToOptions(t *testing.T) { |
| 27 | + var taskInfo TaskInfo |
| 28 | + var ctx context.Context |
| 29 | + var client Client |
| 30 | + |
| 31 | + err := WithNoNewKeyring(ctx, &client, &taskInfo) |
| 32 | + if err != nil { |
| 33 | + t.Fatal(err) |
| 34 | + } |
| 35 | + |
| 36 | + opts := taskInfo.Options.(*runctypes.CreateOptions) |
| 37 | + |
| 38 | + if !opts.NoNewKeyring { |
| 39 | + t.Fatal("NoNewKeyring set on WithNoNewKeyring") |
| 40 | + } |
| 41 | + |
| 42 | +} |
| 43 | + |
| 44 | +func TestWithNoNewKeyringDoesNotOverwriteOtherOptions(t *testing.T) { |
| 45 | + var taskInfo TaskInfo |
| 46 | + var ctx context.Context |
| 47 | + var client Client |
| 48 | + |
| 49 | + taskInfo.Options = &runctypes.CreateOptions{NoPivotRoot: true} |
| 50 | + |
| 51 | + err := WithNoNewKeyring(ctx, &client, &taskInfo) |
| 52 | + if err != nil { |
| 53 | + t.Fatal(err) |
| 54 | + } |
| 55 | + |
| 56 | + opts := taskInfo.Options.(*runctypes.CreateOptions) |
| 57 | + |
| 58 | + if !opts.NoPivotRoot { |
| 59 | + t.Fatal("WithNoNewKeyring overwrote other options") |
| 60 | + } |
| 61 | +} |
0 commit comments