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()
 
f='/danisanti/profani-tty/commit/themes/boothj5?id=976e5aac0a9905dbaa8f150ed7107011b9f87373'>976e5aac ^
30b5f112 ^








976e5aac ^
b21dc543 ^
976e5aac ^
20fa9632 ^
b21dc543 ^
20fa9632 ^
30b5f112 ^
26840cc3 ^


02a4beb6 ^
976e5aac ^
26840cc3 ^
976e5aac ^
976e5aac ^
71a8e391 ^
b21edfaa ^
20fa9632 ^

20fa9632 ^
84f441b9 ^
30b5f112 ^

06afcb59 ^





1900402f ^
99fc70bd ^
20fa9632 ^

30b5f112 ^
446027b9 ^
30b5f112 ^




20fa9632 ^
20fa9632 ^
3892665f ^
20fa9632 ^
30b5f112 ^
3000916a ^
30b5f112 ^

3892665f ^
f0f3a739 ^
35239ee3 ^

93358d5e ^
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