forked from kubernetes/community
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jamie Hannaford
committed
Jun 26, 2017
1 parent
f3375f1
commit eab6586
Showing
10 changed files
with
258 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
FROM golang:1.6-onbuild | ||
FROM golang:1.8-onbuild |
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,8 @@ | ||
FROM golang:1.8 | ||
|
||
WORKDIR /go/src/app | ||
COPY . . | ||
|
||
RUN go-wrapper download | ||
|
||
CMD ["go", "test", "./..."] |
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,136 @@ | ||
/* | ||
Copyright 2017 The Kubernetes Authors. | ||
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 main | ||
|
||
import ( | ||
"io/ioutil" | ||
"strings" | ||
"testing" | ||
) | ||
|
||
func TestNonExistantDirIsCreated(t *testing.T) { | ||
dir := "/tmp/nonexistent" | ||
err := createDirIfNotExists(dir) | ||
if err != nil { | ||
t.Fatalf("Received error creating dir: %v", err) | ||
} | ||
if !pathExists(dir) { | ||
t.Fatalf("%s should exist", dir) | ||
} | ||
} | ||
|
||
func TestGetExistingData(t *testing.T) { | ||
cases := []struct { | ||
path string | ||
expected string | ||
expectErr bool | ||
}{ | ||
{ | ||
path: "./testdata/custom_content.md", | ||
expected: "FOO BAR BAZ", | ||
expectErr: false, | ||
}, | ||
{ | ||
path: "./testdata/no_custom_content.md", | ||
expected: "", | ||
expectErr: false, | ||
}, | ||
{ | ||
path: "./testdata/foo.md", | ||
expected: "", | ||
expectErr: true, | ||
}, | ||
} | ||
|
||
for _, c := range cases { | ||
content, err := getExistingContent(c.path) | ||
if err != nil && c.expectErr == false { | ||
t.Fatalf("Received unexpected error for %s: %v", c.path, err) | ||
} | ||
if err == nil && c.expectErr == true { | ||
t.Fatalf("Expected error for %s but received none", c.path) | ||
} | ||
if content != c.expected { | ||
t.Fatalf("Expected %s but received %s", c.expected, content) | ||
} | ||
} | ||
} | ||
|
||
func TestWriteTemplate(t *testing.T) { | ||
customContent := ` | ||
<!-- BEGIN CUSTOM CONTENT --> | ||
Example | ||
custom | ||
content! | ||
<!-- END CUSTOM CONTENT --> | ||
` | ||
|
||
cases := []struct { | ||
templatePath string | ||
outputPath string | ||
data map[string]string | ||
expectErr bool | ||
expected string | ||
}{ | ||
{ | ||
templatePath: "./testdata/non_existent_template.tmpl", | ||
expectErr: true, | ||
}, | ||
{ | ||
templatePath: "./testdata/example.tmpl", | ||
outputPath: "/tmp/non_existing_path.md", | ||
expectErr: false, | ||
data: map[string]string{"Message": "Hello!"}, | ||
expected: "Hello!", | ||
}, | ||
{ | ||
templatePath: "./testdata/example.tmpl", | ||
outputPath: "./testdata/example.md", | ||
expectErr: false, | ||
data: map[string]string{"Message": "Hello!"}, | ||
expected: customContent, | ||
}, | ||
{ | ||
templatePath: "./testdata/example.tmpl", | ||
outputPath: "/tmp/non_existing_path.md", | ||
expectErr: false, | ||
data: map[string]string{"Message": "Hello!"}, | ||
expected: "Last generated: ", | ||
}, | ||
} | ||
|
||
for _, c := range cases { | ||
err := writeTemplate(c.templatePath, c.outputPath, c.data) | ||
if err != nil && c.expectErr == false { | ||
t.Fatalf("Received unexpected error for %s: %v", c.templatePath, err) | ||
} | ||
if c.expectErr { | ||
if err == nil { | ||
t.Fatalf("Expected error for %s but received none", c.templatePath) | ||
} | ||
continue | ||
} | ||
content, err := ioutil.ReadFile(c.outputPath) | ||
if err != nil { | ||
t.Fatalf("%s should exist", c.outputPath) | ||
} | ||
if strings.Contains(string(content), c.expected) == false { | ||
t.Fatalf("%s was not found in %s", c.expected, c.outputPath) | ||
} | ||
} | ||
} |
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,31 @@ | ||
<!--- | ||
This is an autogenerated file! | ||
Please do not edit this file directly, but instead make changes to the | ||
sigs.yaml file in the project root. | ||
To understand how this file is generated, see generator/README.md. | ||
--> | ||
# Auth SIG | ||
|
||
Covers improvements to Kubernetes authorization, authentication, and cluster security policy. | ||
|
||
## Meetings | ||
* [Wednesdays at 18:00 UTC](https://zoom.us/my/k8s.sig.auth) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=UTC). | ||
|
||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#). | ||
|
||
## Leads | ||
* [Eric Chiang](https://github.com/ericchiang), CoreOS | ||
* [Jordan Liggitt](https://github.com/liggitt), Red Hat | ||
* [David Eads](https://github.com/deads2k), Red Hat | ||
|
||
## Contact | ||
* [Slack](https://kubernetes.slack.com/messages/sig-auth) | ||
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-auth) | ||
|
||
<!-- BEGIN CUSTOM CONTENT --> | ||
FOO BAR BAZ | ||
<!-- END CUSTOM CONTENT --> | ||
|
||
Last generated: Wed Jun 7 2017 14:27:56 |
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,9 @@ | ||
Hello! | ||
<!-- BEGIN CUSTOM CONTENT --> | ||
Example | ||
custom | ||
content! | ||
|
||
<!-- END CUSTOM CONTENT --> | ||
|
||
Last generated: Thu Jun 15 2017 15:20:28 |
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 @@ | ||
{{.Message}} |
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,31 @@ | ||
<!--- | ||
This is an autogenerated file! | ||
Please do not edit this file directly, but instead make changes to the | ||
sigs.yaml file in the project root. | ||
To understand how this file is generated, see generator/README.md. | ||
--> | ||
# Auth SIG | ||
|
||
Covers improvements to Kubernetes authorization, authentication, and cluster security policy. | ||
|
||
## Meetings | ||
* [Wednesdays at 18:00 UTC](https://zoom.us/my/k8s.sig.auth) (biweekly). [Convert to your timezone](http://www.thetimezoneconverter.com/?t=18:00&tz=UTC). | ||
|
||
Meeting notes and Agenda can be found [here](https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#). | ||
|
||
## Leads | ||
* [Eric Chiang](https://github.com/ericchiang), CoreOS | ||
* [Jordan Liggitt](https://github.com/liggitt), Red Hat | ||
* [David Eads](https://github.com/deads2k), Red Hat | ||
|
||
## Contact | ||
* [Slack](https://kubernetes.slack.com/messages/sig-auth) | ||
* [Mailing list](https://groups.google.com/forum/#!forum/kubernetes-sig-auth) | ||
|
||
<!-- BEGIN CUSTOM CONTENT --> | ||
|
||
<!-- END CUSTOM CONTENT --> | ||
|
||
Last generated: Wed Jun 7 2017 14:27:56 |