summaryrefslogtreecommitdiff
path: root/gohadoopxml_test.go
blob: ab6c36eca27e06e80448f14ff9cabccf37eb20c2 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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()
	}
}

func TestGetPropertyValue(t *testing.T) {
	var config = Configuration{
		Properties: []Property{
			{
				Name:  "foo",
				Value: "bar",
			},
		},
	}
	result, err := GetPropertyValue("foo", config)
	if err != nil || result != "bar" {
		t.Fail()
	}
	result, err = GetPropertyValue("fizz", config)
	if err == nil {
		t.Fail()
	}
}