aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/src/cmd/init_test.go
blob: f0f832293a7d56f419f9c3dafc72b5a747fdc619 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// init command tests
// Author: bratseth

package cmd

import (
    "github.com/vespa-engine/vespa/utils"
    "github.com/stretchr/testify/assert"
    "os"
    "testing"
    "path/filepath"
)

func TestInit(t *testing.T) {
    assertCreated("mytestapp", "album-recommendation-selfhosted", t)
}

func assertCreated(app string, sampleAppName string, t *testing.T) {
    existingSampleAppsZip = "testdata/sample-apps-master.zip"
    standardOut := executeCommand(t, &mockHttpClient{}, []string{"init", app, sampleAppName}, []string{})
	defer os.RemoveAll(app)
	assert.Equal(t, "\x1b[32mCreated " + app + "\n", standardOut)
	assert.True(t, utils.PathExists(filepath.Join(app, "README.md")))
	assert.True(t, utils.PathExists(filepath.Join(app, "src", "main", "application")))
	assert.True(t, utils.IsDirectory(filepath.Join(app, "src", "main", "application")))

    servicesStat, _ := os.Stat(filepath.Join(app, "src", "main", "application", "services.xml"))
    var servicesSize int64
    servicesSize = 2474
	assert.Equal(t, servicesSize, servicesStat.Size())
}