2014-10-08 06:07:48 +00:00
|
|
|
package publish
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/drone/drone/shared/build/buildfile"
|
|
|
|
"github.com/drone/drone/shared/build/repo"
|
|
|
|
"gopkg.in/v1/yaml"
|
|
|
|
)
|
|
|
|
|
|
|
|
type PublishToDrone struct {
|
|
|
|
Publish *Publish `yaml:"publish,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func setUpWithDrone(input string) (string, error) {
|
|
|
|
var buildStruct PublishToDrone
|
|
|
|
err := yaml.Unmarshal([]byte(input), &buildStruct)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
bf := buildfile.New()
|
|
|
|
buildStruct.Publish.Write(bf, &repo.Repo{Name: "name"})
|
|
|
|
return bf.String(), err
|
|
|
|
}
|
|
|
|
|
2014-10-17 16:54:51 +00:00
|
|
|
// DockerHost and version test (no auth)
|
|
|
|
var dockerHostYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
|
|
|
docker_host: tcp://server:1000
|
|
|
|
docker_version: 1.3.0
|
|
|
|
image_name: registry/image
|
|
|
|
`
|
|
|
|
func TestDockerHost(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(dockerHostYaml)
|
|
|
|
t.Log(privateRegistryNoAuthYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n\n", err.Error())
|
|
|
|
}
|
|
|
|
expected := "export DOCKER_HOST=tcp://server:1000"
|
|
|
|
if !strings.Contains(response, expected) {
|
|
|
|
t.Fatalf("Response: " + response + " doesn't export correct " +
|
|
|
|
"DOCKER_HOST envvar: expected " + expected + "\n\n")
|
|
|
|
}
|
|
|
|
expected = "https://get.docker.io/builds/Linux/x86_64/docker-1.3.0.tgz"
|
|
|
|
if !strings.Contains(response, expected) {
|
|
|
|
t.Fatalf("Response: " + response + " doesn't download from:" + expected + "\n\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-08 06:07:48 +00:00
|
|
|
// Private Registry Test (no auth)
|
|
|
|
var privateRegistryNoAuthYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
|
|
|
dockerfile: file_path
|
2014-10-17 16:54:51 +00:00
|
|
|
docker_host: tcp://server:1000
|
2014-10-08 06:07:48 +00:00
|
|
|
docker_version: 1.0
|
|
|
|
registry_login: false
|
|
|
|
image_name: registry/image
|
|
|
|
`
|
|
|
|
func TestPrivateRegistryNoAuth(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(privateRegistryNoAuthYaml)
|
|
|
|
t.Log(privateRegistryNoAuthYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n\n", err.Error())
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker build -t registry/image:$(git rev-parse --short HEAD)") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain registry in image-names: expected registry/image\n\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Private Registry Test (with auth)
|
|
|
|
var privateRegistryAuthYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
|
|
|
dockerfile: file_path
|
2014-10-17 16:54:51 +00:00
|
|
|
docker_host: tcp://server:1000
|
2014-10-08 06:07:48 +00:00
|
|
|
docker_version: 1.0
|
|
|
|
registry_login_url: https://registry:8000/v1/
|
|
|
|
registry_login: true
|
|
|
|
username: username
|
|
|
|
password: password
|
|
|
|
email: email@example.com
|
|
|
|
image_name: registry/image
|
|
|
|
`
|
|
|
|
|
|
|
|
func TestPrivateRegistryAuth(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(privateRegistryAuthYaml)
|
|
|
|
t.Log(privateRegistryAuthYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n\n", err.Error())
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker login -u username -p password -e email@example.com https://registry:8000/v1/") {
|
|
|
|
t.Log("\n\n\n\ndocker login -u username -p xxxxxxxx -e email@example.com https://registry:8000/v1/\n\n\n\n")
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain private registry login\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker build -t registry/image:$(git rev-parse --short HEAD) .") {
|
|
|
|
t.Log("docker build -t registry/image:$(git rev-parse --short HEAD) .")
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain registry in image-names\n\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override "latest" Test
|
|
|
|
var overrideLatestTagYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
2014-10-17 16:54:51 +00:00
|
|
|
docker_host: tcp://server:1000
|
2014-10-08 06:07:48 +00:00
|
|
|
docker_version: 1.0
|
|
|
|
username: username
|
|
|
|
password: password
|
|
|
|
email: email@example.com
|
|
|
|
image_name: username/image
|
|
|
|
push_latest: true
|
|
|
|
`
|
|
|
|
|
|
|
|
func TestOverrideLatestTag(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(overrideLatestTagYaml)
|
|
|
|
t.Log(overrideLatestTagYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n\n", err.Error())
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker build -t username/image:$(git rev-parse --short HEAD) .") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain the git-ref tagged image\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker tag username/image:$(git rev-parse --short HEAD) username/image:latest") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain 'latest' tag command\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker push username/image:latest") {
|
|
|
|
t.Fatalf("Response: " + response + " doesn't contain push command\n\n")
|
|
|
|
}
|
2014-10-08 06:07:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Keep builds Test
|
|
|
|
var keepBuildsYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
2014-10-17 16:54:51 +00:00
|
|
|
docker_host: tcp://server:1000
|
2014-10-08 06:07:48 +00:00
|
|
|
docker_version: 1.0
|
|
|
|
keep_build: true
|
|
|
|
username: username
|
|
|
|
password: password
|
|
|
|
email: email@example.com
|
|
|
|
image_name: image
|
|
|
|
`
|
|
|
|
|
|
|
|
func TestKeepBuilds(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(keepBuildsYaml)
|
|
|
|
t.Log(keepBuildsYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n\n", err.Error())
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if strings.Contains(response, "docker rmi") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " incorrectly instructs the docker server to remove the builds when it shouldn't\n\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Custom Tag test
|
|
|
|
var customTagYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
2014-10-17 16:54:51 +00:00
|
|
|
docker_host: tcp://server:1000
|
2014-10-08 06:07:48 +00:00
|
|
|
docker_version: 1.0
|
|
|
|
custom_tag: release-0.1
|
|
|
|
username: username
|
|
|
|
password: password
|
|
|
|
email: email@example.com
|
|
|
|
image_name: username/image
|
|
|
|
`
|
|
|
|
|
|
|
|
func TestCustomTag(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(customTagYaml)
|
|
|
|
t.Log(customTagYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n", err.Error())
|
|
|
|
}
|
|
|
|
if strings.Contains(response, "$(git rev-parse --short HEAD)") {
|
|
|
|
t.Fatalf("Response: " + response + " is tagging images from git-refs when it should use a custom tag\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker build -t username/image:release-0.1") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " isn't tagging images using our custom tag\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker push username/image:release-0.1") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't push the custom tagged image\n\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var missingFieldsYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
|
|
|
dockerfile: file
|
|
|
|
`
|
|
|
|
|
|
|
|
func TestMissingFields(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(missingFieldsYaml)
|
|
|
|
t.Log(missingFieldsYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n\n", err.Error())
|
|
|
|
}
|
|
|
|
if !strings.Contains(response, "Missing argument(s)") {
|
|
|
|
t.Fatalf("Response: " + response + " didn't contain missing arguments warning\n\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var validYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
|
|
|
docker_file: file_path
|
2014-10-17 16:54:51 +00:00
|
|
|
docker_host: tcp://server:1000
|
2014-10-08 06:07:48 +00:00
|
|
|
docker_version: 1.0
|
|
|
|
username: user
|
|
|
|
password: password
|
|
|
|
email: email
|
|
|
|
image_name: user/image
|
|
|
|
push_latest: true
|
|
|
|
registry_login: true
|
|
|
|
`
|
|
|
|
|
|
|
|
func TestValidYaml(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(validYaml)
|
|
|
|
t.Log(validYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n\n", err.Error())
|
|
|
|
}
|
|
|
|
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker tag user/image:$(git rev-parse --short HEAD) user/image:latest") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain tag command for latest\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker build -t user/image:$(git rev-parse --short HEAD) - <") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + "doesn't contain build command for commit hash\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker login -u user -p password -e email") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain login command\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker push user/image:$(git rev-parse --short HEAD)") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain push command\n\n")
|
|
|
|
}
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker rmi user/image:"+
|
2014-10-08 06:07:48 +00:00
|
|
|
"$(git rev-parse --short HEAD)") {
|
|
|
|
t.Fatalf("Response: " + response + " doesn't contain remove image command\n\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var withoutDockerFileYaml = `
|
|
|
|
publish:
|
|
|
|
docker:
|
2014-10-17 16:54:51 +00:00
|
|
|
docker_host: tcp://server:1000
|
2014-10-08 06:07:48 +00:00
|
|
|
docker_version: 1.0
|
|
|
|
image_name: user/image
|
|
|
|
username: user
|
|
|
|
password: password
|
|
|
|
email: email
|
|
|
|
`
|
|
|
|
|
|
|
|
func TestWithoutDockerFile(t *testing.T) {
|
|
|
|
response, err := setUpWithDrone(withoutDockerFileYaml)
|
|
|
|
t.Log(withoutDockerFileYaml)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Can't unmarshal script: %s\n\n", err.Error())
|
|
|
|
}
|
|
|
|
|
2014-10-17 16:54:51 +00:00
|
|
|
if !strings.Contains(response, "docker build -t user/image:$(git rev-parse --short HEAD) .") {
|
2014-10-08 06:07:48 +00:00
|
|
|
t.Fatalf("Response: " + response + " doesn't contain build command\n\n")
|
|
|
|
}
|
|
|
|
}
|