| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439 |
- /*
- Copyright 2020 Docker, Inc.
- 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 (
- "context"
- "fmt"
- "math/rand"
- "net/url"
- "os"
- "strings"
- "testing"
- "time"
- "github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/resources/mgmt/resources"
- azure_storage "github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/storage/mgmt/storage"
- "github.com/Azure/azure-storage-file-go/azfile"
- "github.com/Azure/go-autorest/autorest/to"
- . "github.com/onsi/gomega"
- log "github.com/sirupsen/logrus"
- "github.com/stretchr/testify/suite"
- "github.com/docker/api/azure"
- "github.com/docker/api/azure/login"
- "github.com/docker/api/context/store"
- "github.com/docker/api/tests/aci-e2e/storage"
- . "github.com/docker/api/tests/framework"
- )
- const (
- location = "westeurope"
- contextName = "acitest"
- testContainerName = "testcontainername"
- testShareName = "dockertestshare"
- testFileContent = "Volume mounted with success!"
- testFileName = "index.html"
- )
- var (
- subscriptionID string
- )
- type E2eACISuite struct {
- Suite
- }
- func (s *E2eACISuite) TestACIRunSingleContainer() {
- resourceGroupName := s.setupTestResourceGroup()
- defer deleteResourceGroup(resourceGroupName)
- var nginxExposedURL string
- s.Step("runs nginx on port 80", func() {
- aciContext := store.AciContext{
- SubscriptionID: subscriptionID,
- Location: location,
- ResourceGroup: resourceGroupName,
- }
- testStorageAccountName := "storageteste2e" + RandStringBytes(6) // "between 3 and 24 characters in length and use numbers and lower-case letters only"
- createStorageAccount(aciContext, testStorageAccountName)
- defer deleteStorageAccount(aciContext, testStorageAccountName)
- keys := getStorageKeys(aciContext, testStorageAccountName)
- firstKey := *keys[0].Value
- credential, u := createFileShare(firstKey, testShareName, testStorageAccountName)
- uploadFile(credential, u.String(), testFileName, testFileContent)
- mountTarget := "/usr/share/nginx/html"
- output := s.NewDockerCommand("run", "-d", "nginx",
- "-v", fmt.Sprintf("%s:%s@%s:%s",
- testStorageAccountName, firstKey, testShareName, mountTarget),
- "-p", "80:80",
- "--name", testContainerName).ExecOrDie()
- Expect(output).To(ContainSubstring(testContainerName))
- output = s.NewDockerCommand("ps").ExecOrDie()
- lines := Lines(output)
- Expect(len(lines)).To(Equal(2))
- containerFields := Columns(lines[1])
- Expect(containerFields[1]).To(Equal("nginx"))
- Expect(containerFields[2]).To(Equal("Running"))
- exposedIP := containerFields[3]
- containerID := containerFields[0]
- Expect(exposedIP).To(ContainSubstring(":80->80/tcp"))
- nginxExposedURL = strings.ReplaceAll(exposedIP, "->80/tcp", "")
- output = s.NewCommand("curl", nginxExposedURL).ExecOrDie()
- Expect(output).To(ContainSubstring(testFileContent))
- output = s.NewDockerCommand("logs", containerID).ExecOrDie()
- Expect(output).To(ContainSubstring("GET"))
- })
- s.Step("exec command", func() {
- output := s.NewDockerCommand("exec", testContainerName, "pwd").ExecOrDie()
- Expect(output).To(ContainSubstring("/"))
- _, err := s.NewDockerCommand("exec", testContainerName, "echo", "fail_with_argument").Exec()
- Expect(err.Error()).To(ContainSubstring("ACI exec command does not accept arguments to the command. " +
- "Only the binary should be specified"))
- })
- s.Step("follow logs from nginx", func() {
- timeChan := make(chan time.Time)
- ctx := s.NewDockerCommand("logs", "--follow", testContainerName).WithTimeout(timeChan)
- outChan := make(chan string)
- go func() {
- output, _ := ctx.Exec()
- outChan <- output
- }()
- s.NewCommand("curl", nginxExposedURL+"/test").ExecOrDie()
- // Give the `logs --follow` a little time to get logs of the curl call
- time.Sleep(10 * time.Second)
- // Trigger a timeout to make ctx.Exec exit
- timeChan <- time.Now()
- output := <-outChan
- Expect(output).To(ContainSubstring("/test"))
- })
- s.Step("removes container nginx", func() {
- output := s.NewDockerCommand("rm", testContainerName).ExecOrDie()
- Expect(Lines(output)[0]).To(Equal(testContainerName))
- })
- s.Step("re-run nginx with modified cpu/mem, and without --detach and follow logs", func() {
- shutdown := make(chan time.Time)
- errs := make(chan error)
- outChan := make(chan string)
- cmd := s.NewDockerCommand("run", "nginx", "--memory", "0.1G", "--cpus", "0.1", "-p", "80:80", "--name", testContainerName).WithTimeout(shutdown)
- go func() {
- output, err := cmd.Exec()
- outChan <- output
- errs <- err
- }()
- var containerID string
- err := WaitFor(time.Second, 100*time.Second, errs, func() bool {
- output := s.NewDockerCommand("ps").ExecOrDie()
- lines := Lines(output)
- if len(lines) != 2 {
- return false
- }
- containerFields := Columns(lines[1])
- if containerFields[2] != "Running" {
- return false
- }
- containerID = containerFields[0]
- nginxExposedURL = strings.ReplaceAll(containerFields[3], "->80/tcp", "")
- return true
- })
- Expect(err).NotTo(HaveOccurred())
- s.NewCommand("curl", nginxExposedURL+"/test").ExecOrDie()
- inspect := s.NewDockerCommand("inspect", containerID).ExecOrDie()
- Expect(inspect).To(ContainSubstring("\"CPULimit\": 0.1"))
- Expect(inspect).To(ContainSubstring("\"MemoryLimit\": 107374182"))
- // Give a little time to get logs of the curl call
- time.Sleep(5 * time.Second)
- // Kill
- close(shutdown)
- output := <-outChan
- Expect(output).To(ContainSubstring("/test"))
- })
- s.Step("removes container nginx", func() {
- output := s.NewDockerCommand("rm", testContainerName).ExecOrDie()
- Expect(Lines(output)[0]).To(Equal(testContainerName))
- })
- }
- func (s *E2eACISuite) TestACIComposeApplication() {
- defer deleteResourceGroup(s.setupTestResourceGroup())
- var exposedURL string
- const composeFile = "../composefiles/aci-demo/aci_demo_port.yaml"
- const composeFileMultiplePorts = "../composefiles/aci-demo/aci_demo_multi_port.yaml"
- const composeProjectName = "acie2e"
- const serverContainer = composeProjectName + "_web"
- const wordsContainer = composeProjectName + "_words"
- s.Step("deploys a compose app", func() {
- // specifically do not specify project name here, it will be derived from current folder "acie2e"
- s.NewDockerCommand("compose", "up", "-f", composeFile).ExecOrDie()
- output := s.NewDockerCommand("ps").ExecOrDie()
- Lines := Lines(output)
- Expect(len(Lines)).To(Equal(4))
- webChecked := false
- for _, line := range Lines[1:] {
- Expect(line).To(ContainSubstring("Running"))
- if strings.Contains(line, serverContainer) {
- webChecked = true
- containerFields := Columns(line)
- exposedIP := containerFields[3]
- Expect(exposedIP).To(ContainSubstring(":80->80/tcp"))
- exposedURL = strings.ReplaceAll(exposedIP, "->80/tcp", "")
- output = s.NewCommand("curl", exposedURL).ExecOrDie()
- Expect(output).To(ContainSubstring("Docker Compose demo"))
- output = s.NewCommand("curl", exposedURL+"/words/noun").ExecOrDie()
- Expect(output).To(ContainSubstring("\"word\":"))
- }
- }
- Expect(webChecked).To(BeTrue())
- })
- s.Step("get logs from web service", func() {
- output := s.NewDockerCommand("logs", serverContainer).ExecOrDie()
- Expect(output).To(ContainSubstring("Listening on port 80"))
- })
- s.Step("updates a compose app", func() {
- s.NewDockerCommand("compose", "up", "-f", composeFileMultiplePorts, "--project-name", composeProjectName).ExecOrDie()
- // Expect(output).To(ContainSubstring("Successfully deployed"))
- output := s.NewDockerCommand("ps").ExecOrDie()
- Lines := Lines(output)
- Expect(len(Lines)).To(Equal(4))
- webChecked := false
- wordsChecked := false
- for _, line := range Lines[1:] {
- Expect(line).To(ContainSubstring("Running"))
- if strings.Contains(line, serverContainer) {
- webChecked = true
- containerFields := Columns(line)
- exposedIP := containerFields[3]
- Expect(exposedIP).To(ContainSubstring(":80->80/tcp"))
- url := strings.ReplaceAll(exposedIP, "->80/tcp", "")
- Expect(exposedURL).To(Equal(url))
- }
- if strings.Contains(line, wordsContainer) {
- wordsChecked = true
- containerFields := Columns(line)
- exposedIP := containerFields[3]
- Expect(exposedIP).To(ContainSubstring(":8080->8080/tcp"))
- url := strings.ReplaceAll(exposedIP, "->8080/tcp", "")
- output = s.NewCommand("curl", url+"/noun").ExecOrDie()
- Expect(output).To(ContainSubstring("\"word\":"))
- }
- }
- Expect(webChecked).To(BeTrue())
- Expect(wordsChecked).To(BeTrue())
- })
- s.Step("shutdown compose app", func() {
- s.NewDockerCommand("compose", "down", "--project-name", composeProjectName).ExecOrDie()
- })
- }
- func (s *E2eACISuite) TestACIDeployMySQlwithEnvVars() {
- defer deleteResourceGroup(s.setupTestResourceGroup())
- s.Step("runs mysql with env variables", func() {
- err := os.Setenv("MYSQL_USER", "user1")
- Expect(err).To(BeNil())
- s.NewDockerCommand("run", "-d", "mysql:5.7", "-e", "MYSQL_ROOT_PASSWORD=rootpwd", "-e", "MYSQL_DATABASE=mytestdb", "-e", "MYSQL_USER", "-e", "MYSQL_PASSWORD=userpwd").ExecOrDie()
- output := s.NewDockerCommand("ps").ExecOrDie()
- lines := Lines(output)
- Expect(len(lines)).To(Equal(2))
- containerFields := Columns(lines[1])
- containerID := containerFields[0]
- Expect(containerFields[1]).To(Equal("mysql:5.7"))
- Expect(containerFields[2]).To(Equal("Running"))
- errs := make(chan error)
- err = WaitFor(time.Second, 100*time.Second, errs, func() bool {
- output = s.NewDockerCommand("logs", containerID).ExecOrDie()
- return strings.Contains(output, "Giving user user1 access to schema mytestdb")
- })
- Expect(err).To(BeNil())
- })
- s.Step("switches back to default context", func() {
- output := s.NewCommand("docker", "context", "use", "default").ExecOrDie()
- Expect(output).To(ContainSubstring("default"))
- })
- s.Step("deletes test context", func() {
- output := s.NewCommand("docker", "context", "rm", contextName).ExecOrDie()
- Expect(output).To(ContainSubstring(contextName))
- })
- }
- func (s *E2eACISuite) setupTestResourceGroup() string {
- var resourceGroupName = randomResourceGroup()
- s.Step("should be initialized with default context", s.checkDefaultContext)
- s.Step("Logs in azure using service principal credentials", azureLogin)
- s.Step("creates a new aci context for tests and use it", s.createAciContextAndUseIt(resourceGroupName))
- s.Step("ensures no container is running initially", s.checkNoContainnersRunning)
- return resourceGroupName
- }
- func (s *E2eACISuite) checkDefaultContext() {
- output := s.NewCommand("docker", "context", "ls").ExecOrDie()
- Expect(output).To(Not(ContainSubstring(contextName)))
- Expect(output).To(ContainSubstring("default *"))
- }
- func azureLogin() {
- login, err := login.NewAzureLoginService()
- Expect(err).To(BeNil())
- // in order to create new service principal and get these 3 values : `az ad sp create-for-rbac --name 'TestServicePrincipal' --sdk-auth`
- clientID := os.Getenv("AZURE_CLIENT_ID")
- clientSecret := os.Getenv("AZURE_CLIENT_SECRET")
- tenantID := os.Getenv("AZURE_TENANT_ID")
- err = login.TestLoginFromServicePrincipal(clientID, clientSecret, tenantID)
- Expect(err).To(BeNil())
- }
- func (s *E2eACISuite) createAciContextAndUseIt(resourceGroupName string) func() {
- return func() {
- setupTestResourceGroup(resourceGroupName)
- helper := azure.NewACIResourceGroupHelper()
- models, err := helper.GetSubscriptionIDs(context.TODO())
- Expect(err).To(BeNil())
- subscriptionID = *models[0].SubscriptionID
- s.NewDockerCommand("context", "create", "aci", contextName, "--subscription-id", subscriptionID, "--resource-group", resourceGroupName, "--location", location).ExecOrDie()
- currentContext := s.NewCommand("docker", "context", "use", contextName).ExecOrDie()
- Expect(currentContext).To(ContainSubstring(contextName))
- output := s.NewCommand("docker", "context", "ls").ExecOrDie()
- Expect(output).To(ContainSubstring("acitest *"))
- }
- }
- func (s *E2eACISuite) checkNoContainnersRunning() {
- output := s.NewDockerCommand("ps").ExecOrDie()
- Expect(len(Lines(output))).To(Equal(1))
- }
- func randomResourceGroup() string {
- return "resourceGroupTestE2E-" + RandStringBytes(10)
- }
- func createStorageAccount(aciContext store.AciContext, accountName string) azure_storage.Account {
- log.Println("Creating storage account " + accountName)
- storageAccount, err := storage.CreateStorageAccount(context.TODO(), aciContext, accountName)
- Expect(err).To(BeNil())
- Expect(*storageAccount.Name).To(Equal(accountName))
- return storageAccount
- }
- func getStorageKeys(aciContext store.AciContext, storageAccountName string) []azure_storage.AccountKey {
- list, err := storage.ListKeys(context.TODO(), aciContext, storageAccountName)
- Expect(err).To(BeNil())
- Expect(list.Keys).ToNot(BeNil())
- Expect(len(*list.Keys)).To(BeNumerically(">", 0))
- return *list.Keys
- }
- func deleteStorageAccount(aciContext store.AciContext, testStorageAccountName string) {
- log.Println("Deleting storage account " + testStorageAccountName)
- _, err := storage.DeleteStorageAccount(context.TODO(), aciContext, testStorageAccountName)
- Expect(err).To(BeNil())
- }
- func createFileShare(key, shareName string, testStorageAccountName string) (azfile.SharedKeyCredential, url.URL) {
- // Create a ShareURL object that wraps a soon-to-be-created share's URL and a default pipeline.
- u, _ := url.Parse(fmt.Sprintf("https://%s.file.core.windows.net/%s", testStorageAccountName, shareName))
- credential, err := azfile.NewSharedKeyCredential(testStorageAccountName, key)
- Expect(err).To(BeNil())
- shareURL := azfile.NewShareURL(*u, azfile.NewPipeline(credential, azfile.PipelineOptions{}))
- _, err = shareURL.Create(context.TODO(), azfile.Metadata{}, 0)
- Expect(err).To(BeNil())
- return *credential, *u
- }
- func uploadFile(credential azfile.SharedKeyCredential, baseURL, fileName, fileContent string) {
- fURL, err := url.Parse(baseURL + "/" + fileName)
- Expect(err).To(BeNil())
- fileURL := azfile.NewFileURL(*fURL, azfile.NewPipeline(&credential, azfile.PipelineOptions{}))
- err = azfile.UploadBufferToAzureFile(context.TODO(), []byte(fileContent), fileURL, azfile.UploadToAzureFileOptions{})
- Expect(err).To(BeNil())
- }
- func TestE2eACI(t *testing.T) {
- suite.Run(t, new(E2eACISuite))
- }
- func setupTestResourceGroup(resourceGroupName string) {
- log.Println("Creating resource group " + resourceGroupName)
- ctx := context.TODO()
- helper := azure.NewACIResourceGroupHelper()
- models, err := helper.GetSubscriptionIDs(ctx)
- Expect(err).To(BeNil())
- _, err = helper.CreateOrUpdate(ctx, *models[0].SubscriptionID, resourceGroupName, resources.Group{
- Location: to.StringPtr(location),
- })
- Expect(err).To(BeNil())
- }
- func deleteResourceGroup(resourceGroupName string) {
- log.Println("Deleting resource group " + resourceGroupName)
- ctx := context.TODO()
- helper := azure.NewACIResourceGroupHelper()
- models, err := helper.GetSubscriptionIDs(ctx)
- Expect(err).To(BeNil())
- err = helper.DeleteAsync(ctx, *models[0].SubscriptionID, resourceGroupName)
- Expect(err).To(BeNil())
- }
- func RandStringBytes(n int) string {
- rand.Seed(time.Now().UnixNano())
- const digits = "0123456789"
- b := make([]byte, n)
- for i := range b {
- b[i] = digits[rand.Intn(len(digits))]
- }
- return string(b)
- }
|