summary refs log tree commit diff stats
path: root/svc/db_test.go
diff options
context:
space:
mode:
authorBen Morrison <ben@gbmor.dev>2019-06-09 02:22:00 -0400
committerBen Morrison <ben@gbmor.dev>2019-06-09 02:22:00 -0400
commite280417e804cb0f3723639b14a7af12e6bdebd09 (patch)
tree49bc8f78897181fac52b7469eed45d43904aedd4 /svc/db_test.go
parent5e92b610a5f8832e6a389b1acb01fd0cc866780e (diff)
downloadgetwtxt-e280417e804cb0f3723639b14a7af12e6bdebd09.tar.gz
re-enabled pushDB/pullDB test
Diffstat (limited to 'svc/db_test.go')
-rw-r--r--svc/db_test.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/svc/db_test.go b/svc/db_test.go
index f3252c6..8cd0b61 100644
--- a/svc/db_test.go
+++ b/svc/db_test.go
@@ -7,7 +7,6 @@ import (
 	"github.com/getwtxt/registry"
 )
 
-/*
 func Test_pushpullDatabase(t *testing.T) {
 	initTestConf()
 	initDatabase()
@@ -25,7 +24,7 @@ func Test_pushpullDatabase(t *testing.T) {
 	remoteRegistries.Mu.Unlock()
 
 	t.Run("Push to Database", func(t *testing.T) {
-		err := pushDatabase()
+		err := pushDB()
 		if err != nil {
 			t.Errorf("%v\n", err)
 		}
@@ -39,7 +38,7 @@ func Test_pushpullDatabase(t *testing.T) {
 	})
 
 	t.Run("Pulling from Database", func(t *testing.T) {
-		pullDatabase()
+		pullDB()
 		twtxtCache.Mu.RLock()
 		if _, ok := twtxtCache.Users["https://gbmor.dev/twtxt.txt"]; !ok {
 			t.Errorf("Missing user previously pushed to database\n")
@@ -48,7 +47,6 @@ func Test_pushpullDatabase(t *testing.T) {
 
 	})
 }
-*/
 func Benchmark_pushDatabase(b *testing.B) {
 	initTestConf()
 
l?h=v1.6.1&id=4e01caf19cfbc798862e6b8b2dbd77328c8f99a2'>^
34a60763 ^
f07bb12f ^

34a60763 ^
f07bb12f ^

34a60763 ^
f07bb12f ^

34a60763 ^
f07bb12f ^






34a60763 ^
f07bb12f ^








































34a60763 ^
f07bb12f ^



34a60763 ^


f07bb12f ^






34a60763 ^
f07bb12f ^


34a60763 ^
c776804d ^
f07bb12f ^

34a60763 ^
f07bb12f ^



34a60763 ^





f07bb12f ^









34a60763 ^
f07bb12f ^

34a60763 ^
f07bb12f ^

f07bb12f ^

34a60763 ^

f07bb12f ^

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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148