|
| 1 | +// Copyright 2024 MongoDB Inc |
| 2 | +// |
| 3 | +// Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +// you may not use this file except in compliance with the License. |
| 5 | +// You may obtain a copy of the License at |
| 6 | +// |
| 7 | +// http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +// |
| 9 | +// Unless required by applicable law or agreed to in writing, software |
| 10 | +// distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +// See the License for the specific language governing permissions and |
| 13 | +// limitations under the License. |
| 14 | + |
| 15 | +package filter |
| 16 | + |
| 17 | +import ( |
| 18 | + "net/url" |
| 19 | + "testing" |
| 20 | + |
| 21 | + "github.com/getkin/kin-openapi/openapi3" |
| 22 | + "github.com/mongodb/openapi/tools/cli/internal/openapi" |
| 23 | + "github.com/spf13/afero" |
| 24 | + "github.com/stretchr/testify/require" |
| 25 | + "github.com/tufin/oasdiff/load" |
| 26 | +) |
| 27 | + |
| 28 | +func TestSuccessfulFilter_Run(t *testing.T) { |
| 29 | + fs := afero.NewMemMapFs() |
| 30 | + t.Parallel() |
| 31 | + |
| 32 | + opts := &Opts{ |
| 33 | + basePath: "../../../test/data/base_spec.json", |
| 34 | + outputPath: "filtered-oas.yaml", |
| 35 | + fs: fs, |
| 36 | + env: "dev", |
| 37 | + } |
| 38 | + |
| 39 | + if err := opts.Run(); err != nil { |
| 40 | + t.Fatalf("Run() unexpected error: %v", err) |
| 41 | + } |
| 42 | + |
| 43 | + newSpec, err := loadRunResultOas(fs, opts.outputPath) |
| 44 | + require.NoError(t, err) |
| 45 | + |
| 46 | + // check all paths are kept |
| 47 | + for _, pathItem := range newSpec.Spec.Paths.Map() { |
| 48 | + for _, operation := range pathItem.Operations() { |
| 49 | + // check extensions are removed at the operation level |
| 50 | + require.Nil(t, operation.Extensions) |
| 51 | + } |
| 52 | + } |
| 53 | +} |
| 54 | + |
| 55 | +func TestSuccessfulFilterWithVersion_Run(t *testing.T) { |
| 56 | + fs := afero.NewMemMapFs() |
| 57 | + t.Parallel() |
| 58 | + |
| 59 | + opts := &Opts{ |
| 60 | + basePath: "../../../test/data/base_spec.json", |
| 61 | + outputPath: "filtered-oas.yaml", |
| 62 | + fs: fs, |
| 63 | + env: "dev", |
| 64 | + version: "2023-01-01", |
| 65 | + } |
| 66 | + |
| 67 | + if err := opts.Run(); err != nil { |
| 68 | + t.Fatalf("Run() unexpected error: %v", err) |
| 69 | + } |
| 70 | + |
| 71 | + s, err := loadRunResultOas(fs, opts.outputPath) |
| 72 | + require.NoError(t, err) |
| 73 | + // assert /api/atlas/v2/groups/{groupId}:migrate does not exist in filtered spec as it is from a newer version |
| 74 | + paths := s.Spec.Paths.Map() |
| 75 | + require.Contains(t, paths, "/api/atlas/v2/groups") |
| 76 | + require.NotContains(t, paths, "/api/atlas/v2/groups/{groupId}:migrate") |
| 77 | +} |
| 78 | + |
| 79 | +func TestOpts_PreRunE(t *testing.T) { |
| 80 | + testCases := []struct { |
| 81 | + wantErr require.ErrorAssertionFunc |
| 82 | + basePath string |
| 83 | + name string |
| 84 | + }{ |
| 85 | + { |
| 86 | + wantErr: require.Error, |
| 87 | + name: "NoBasePath", |
| 88 | + }, |
| 89 | + { |
| 90 | + wantErr: require.NoError, |
| 91 | + basePath: "../../../test/data/base_spec.json", |
| 92 | + name: "Successful", |
| 93 | + }, |
| 94 | + } |
| 95 | + |
| 96 | + for _, tt := range testCases { |
| 97 | + t.Run(tt.name, func(t *testing.T) { |
| 98 | + o := &Opts{ |
| 99 | + basePath: tt.basePath, |
| 100 | + format: "json", |
| 101 | + } |
| 102 | + tt.wantErr(t, o.PreRunE(nil)) |
| 103 | + }) |
| 104 | + } |
| 105 | +} |
| 106 | + |
| 107 | +func TestInvalidFormat_PreRun(t *testing.T) { |
| 108 | + opts := &Opts{ |
| 109 | + outputPath: "foas.json", |
| 110 | + basePath: "base.json", |
| 111 | + format: "html", |
| 112 | + } |
| 113 | + |
| 114 | + err := opts.PreRunE(nil) |
| 115 | + require.Error(t, err) |
| 116 | + require.EqualError(t, err, "format must be either 'json', 'yaml' or 'all', got 'html'") |
| 117 | +} |
| 118 | + |
| 119 | +func TestInvalidPath_PreRun(t *testing.T) { |
| 120 | + opts := &Opts{ |
| 121 | + outputPath: "foas.html", |
| 122 | + basePath: "base.json", |
| 123 | + format: "all", |
| 124 | + } |
| 125 | + |
| 126 | + err := opts.PreRunE(nil) |
| 127 | + require.Error(t, err) |
| 128 | + require.EqualError(t, err, "output file must be either a JSON or YAML file, got foas.html") |
| 129 | +} |
| 130 | + |
| 131 | +func loadRunResultOas(fs afero.Fs, fileName string) (*load.SpecInfo, error) { |
| 132 | + oas := openapi.NewOpenAPI3() |
| 133 | + oas.Loader.ReadFromURIFunc = func(_ *openapi3.Loader, _ *url.URL) ([]byte, error) { |
| 134 | + f, err := fs.OpenFile(fileName, 0, 0) |
| 135 | + if err != nil { |
| 136 | + return nil, err |
| 137 | + } |
| 138 | + defer f.Close() |
| 139 | + return afero.ReadAll(f) |
| 140 | + } |
| 141 | + |
| 142 | + return oas.CreateOpenAPISpecFromPath(fileName) |
| 143 | +} |
0 commit comments