-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from kris-nova/more-tests
Adding anchore, contour and YAML delimiter tests and newly uncovered bugs 🎉
- Loading branch information
Showing
7 changed files
with
7,164 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,252 @@ | ||
// | ||
// Copyright © 2021 Kris Nóva <[email protected]> | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
// ███╗ ██╗ █████╗ ███╗ ███╗██╗ | ||
// ████╗ ██║██╔══██╗████╗ ████║██║ | ||
// ██╔██╗ ██║███████║██╔████╔██║██║ | ||
// ██║╚██╗██║██╔══██║██║╚██╔╝██║██║ | ||
// ██║ ╚████║██║ ██║██║ ╚═╝ ██║███████╗ | ||
// ╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ | ||
// | ||
|
||
package naml | ||
|
||
import ( | ||
"bytes" | ||
"testing" | ||
) | ||
|
||
func TestYAMLDelimiterBottom(t *testing.T) { | ||
|
||
testString := `apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer | ||
--- | ||
` | ||
|
||
buf := bytes.Buffer{} | ||
buf.Write([]byte(testString)) | ||
objects, err := ReaderToCodifyObjects(&buf) | ||
if err != nil { | ||
t.Errorf("YAML delimiter check: %v", err) | ||
} | ||
if len(objects) != 2 { | ||
t.Errorf("YAML delimiter split: %d", len(objects)) | ||
} | ||
} | ||
|
||
func TestYAMLDelimiterNoSpace(t *testing.T) { | ||
|
||
testString := ` | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer | ||
` | ||
|
||
buf := bytes.Buffer{} | ||
buf.Write([]byte(testString)) | ||
objects, err := ReaderToCodifyObjects(&buf) | ||
if err != nil { | ||
t.Errorf("YAML delimiter check: %v", err) | ||
} | ||
if len(objects) != 2 { | ||
t.Errorf("YAML delimiter split: %d", len(objects)) | ||
} | ||
} | ||
|
||
func TestYAMLDelimiterTopLoad(t *testing.T) { | ||
|
||
testString := ` | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer | ||
` | ||
|
||
buf := bytes.Buffer{} | ||
buf.Write([]byte(testString)) | ||
objects, err := ReaderToCodifyObjects(&buf) | ||
if err != nil { | ||
t.Errorf("YAML delimiter check: %v", err) | ||
} | ||
if len(objects) != 2 { | ||
t.Errorf("YAML delimiter split: %d", len(objects)) | ||
} | ||
} | ||
|
||
func TestYAMLDelimiterHappy(t *testing.T) { | ||
|
||
testString := `apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer | ||
` | ||
|
||
buf := bytes.Buffer{} | ||
buf.Write([]byte(testString)) | ||
objects, err := ReaderToCodifyObjects(&buf) | ||
if err != nil { | ||
t.Errorf("YAML delimiter check: %v", err) | ||
} | ||
if len(objects) != 2 { | ||
t.Errorf("YAML delimiter split: %d", len(objects)) | ||
} | ||
} | ||
|
||
func TestYAMLDelimiterInline(t *testing.T) { | ||
|
||
testString := `apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
labels: | ||
app: example | ||
bogus: --- | ||
name: example | ||
spec: | ||
ports: | ||
- port: 80 | ||
protocol: TCP | ||
targetPort: 8080 | ||
selector: | ||
app: example | ||
type: LoadBalancer` | ||
|
||
buf := bytes.Buffer{} | ||
buf.Write([]byte(testString)) | ||
objects, err := ReaderToCodifyObjects(&buf) | ||
if err != nil { | ||
t.Errorf("inline YAML delimiter check: %v", err) | ||
} | ||
if len(objects) != 1 { | ||
t.Errorf("inline YAML delimiter split: %d", len(objects)) | ||
} | ||
} |
Oops, something went wrong.