aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/config_test.go
blob: bf7eda53bf2c781b57df06b841b0994e9db3e799 (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
33
34
35
36
37
38
39
package filesystem

import (
	"bytes"

	. "gopkg.in/check.v1"
)

type ConfigSuite struct{}

var _ = Suite(&ConfigSuite{})

func (s *ConfigSuite) TestConfigFileDecode(c *C) {
	config := &ConfigFile{}

	err := config.Decode(bytes.NewBuffer(configFixture))
	c.Assert(err, IsNil)

	c.Assert(config.Remotes, HasLen, 2)
	c.Assert(config.Remotes["origin"].URL, Equals, "git@github.com:src-d/go-git.git")
	c.Assert(config.Remotes["origin"].Fetch.String(), Equals, "+refs/heads/*:refs/remotes/origin/*")
}

var configFixture = []byte(`
[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        url = git@github.com:src-d/go-git.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "v4"]
        remote = origin
        merge = refs/heads/v4
[remote "mcuadros"]
        url = git@github.com:mcuadros/go-git.git
        fetch = +refs/heads/*:refs/remotes/mcuadros/*
`)