-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXMLConnection_test.go
56 lines (49 loc) · 1.6 KB
/
XMLConnection_test.go
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
package gouda_test
import (
"gouda"
"testing"
"fmt"
"os"
"reflect"
)
var testFileName string = "/tmp/test.xml"
func TestOpenClose(t *testing.T) {
conn := gouda.OpenXML(testFileName)
conn.Close()
if _, err := os.Open(testFileName, os.O_RDONLY, 0); err != nil {
t.Error("database file not created !")
} else {
os.Remove(testFileName)
}
}
func TestCreateTable(t *testing.T) {
conn := gouda.OpenXML(testFileName).(*gouda.XMLConnector)
table := conn.CreateTable("personne")
table.AddAttribute("nom", gouda.StringKind)
table.AddAttribute("age", gouda.IntKind)
// fmt.Println(table)
conn.Close()
conn = gouda.OpenXML(testFileName).(*gouda.XMLConnector)
if conn.Table("personne") == nil {
t.Error("Can't find Table")
}
if attr := conn.Table("personne").Attributes(); !reflect.DeepEqual(attr, table.Attributes()) {
t.Error("not found attrs " + fmt.Sprint(attr) + " vs " + fmt.Sprint(table.Attributes()))
}
conn.Close()
}
func TestCreateData(t *testing.T) {
conn := gouda.OpenXML(testFileName).(*gouda.XMLConnector)
table := conn.CreateTable("personne")
table.AddAttribute("nom", gouda.StringKind)
table.AddAttribute("age", gouda.IntKind)
// fmt.Println(table)
table.Insert(map[string]gouda.Value{"id": gouda.SysInt(1).Value(), "nom": gouda.SysString("toto").Value(), "age": gouda.SysInt(13).Value()})
table.Insert(map[string]gouda.Value{"id": gouda.SysInt(2).Value(), "nom": gouda.SysString("titi").Value(), "age": gouda.SysInt(13).Value()})
conn.Close()
conn = gouda.OpenXML(testFileName).(*gouda.XMLConnector)
if conn.Table("personne").Data().Len() != 2 {
t.Error("Not Found 2 ")
}
conn.Close()
}