File: init_test.go

package info (click to toggle)
golang-github-sjoerdsimons-ostree-go 0.0~git20180830.1ac74ff-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 308 kB
  • sloc: ansic: 173; makefile: 4
file content (64 lines) | stat: -rw-r--r-- 1,372 bytes parent folder | download | duplicates (2)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package otbuiltin

import (
	"io/ioutil"
	"os"
	"path"
	"testing"
)

func TestInitSuccess(t *testing.T) {
	// Make a base directory in which all of our test data resides
	baseDir, err := ioutil.TempDir("", "otbuiltin-test-")
	if err != nil {
		t.Errorf("%s", err)
		return
	}
	defer os.RemoveAll(baseDir)
	// Make a directory in which the repo should exist
	repoDir := path.Join(baseDir, "repo")
	err = os.Mkdir(repoDir, 0777)
	if err != nil {
		t.Errorf("%s", err)
		return
	}

	// Initialize the repo
	inited, err := Init(repoDir, NewInitOptions())
	if err != nil {
		t.Errorf("%s", err)
		return
	} else if !inited {
		t.Errorf("Cannot test commit: failed to initialize repo")
		return
	}
}

func TestInitBareUser(t *testing.T) {
	// Make a base directory in which all of our test data resides
	baseDir, err := ioutil.TempDir("", "otbuiltin-test-")
	if err != nil {
		t.Errorf("%s", err)
		return
	}
	defer os.RemoveAll(baseDir)
	// Make a directory in which the repo should exist
	repoDir := path.Join(baseDir, "repo")
	err = os.Mkdir(repoDir, 0777)
	if err != nil {
		t.Errorf("%s", err)
		return
	}

	// Initialize the repo
	initOpts := NewInitOptions()
	initOpts.Mode = "bare-user"
	inited, err := Init(repoDir, initOpts)
	if err != nil {
		t.Errorf("%s", err)
		return
	} else if !inited {
		t.Errorf("Cannot test commit: failed to initialize repo")
		return
	}
}