summaryrefslogtreecommitdiff
path: root/gohadoopxml_test.go
blob: aa81010fd15dc7f710bd43c17d56935fbfe9d9bc (plain)
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
package gohadoopxml

import (
	"testing"
)

func isin(key string, c Configuration) int {
	for i, p := range c.Properties {
		if p.Name == key {
			return i
		}
	}
	return -1
}

func TestMergeConfiguration(t *testing.T) {
	var config1 = Configuration{
		Properties: []Property{
			{
				Name:  "foo",
				Value: "bar",
			},
		},
	}
	var config2 = Configuration{
		Properties: []Property{
			{
				Name:  "fizz",
				Value: "buzz",
			},
		},
	}
	result := MergeConfigurations(config1, config2)
	if i := isin("foo", result); i < 0 {
		t.Fail()
	}
	if i := isin("fizz", result); i < 0 {
		t.Fail()
	}
}