about summary refs log tree commit diff stats
path: root/doc/cheatsheet.svg
Commit message (Expand)AuthorAgeFilesLines
* Document the usage of ? (help)Sighery2019-12-201-79/+96
* Add Space and navigation keys to the cheatsheetSighery2019-12-201-879/+894
* change website URLS to HTTPShut2018-02-051-2/+2
* update homepage referenceshut2018-01-281-2/+2
* core.main: Catch the right tracebacknfnty2017-02-061-2/+2
* doc/cheatsheet.svg: removed bad "(4)" reference from "g" keyhut2015-05-071-1/+1
* doc/cheatsheet.svg: added text about commandshut2015-05-071-0/+94
* cheatsheet: added whitespace in git linkhut2015-05-021-1/+1
* cheatsheet: fix text alignment, add info about d<key> bindingshut2015-04-191-19/+52
* cheatsheet: add reference to ranger's IRC channelhut2015-04-191-4/+18
* cheatsheet: widen the F12 and = keyshut2015-04-191-6/+6
* cheatsheet: change style of textboxeshut2015-04-191-16/+16
* cheatsheet: highlight hjkl in red, not greenhut2015-04-191-5/+3
* cheatsheet: highlight the "?" keyhut2015-04-191-5/+5
* cheatsheet: added three new sectionshut2015-04-191-107/+558
* cheatsheet: added missing "^D"hut2015-04-171-9/+21
* added doc/cheatsheet.svghut2015-04-171-0/+4024
ison <ben@gbmor.dev> 2019-05-22 23:35:37 -0400 committer Ben Morrison <ben@gbmor.dev> 2019-05-22 23:51:12 -0400 moved test init funcs to init_test, testing POST' href='/gbmor/getwtxt/commit/init_test.go?h=v0.4.13&id=a6c816217f09e4d462949c2631a88439886ed655'>a6c8162 ^
e10fc64 ^




5e92b61 ^
a6c8162 ^
5e92b61 ^
c050730 ^
e10fc64 ^
6753171 ^
c050730 ^

e10fc64 ^

7f76158 ^
e10fc64 ^
5e92b61 ^
a6c8162 ^

e10fc64 ^





a6c8162 ^





979e1f9 ^
a6c8162 ^
6753171 ^
6753171 ^
6753171 ^

bc6811a ^
6753171 ^
bc6811a ^



6753171 ^
6753171 ^


bc6811a ^

6753171 ^






7f76158 ^
6753171 ^

e10fc64 ^
6753171 ^
6753171 ^
6753171 ^
6753171 ^
6753171 ^
45d6723 ^
6753171 ^




6753171 ^
2fd6b1a ^
bc6811a ^

2fd6b1a ^
37142b5 ^
41398b1 ^
2fd6b1a ^
37142b5 ^
2fd6b1a ^
bc6811a ^








37142b5 ^
bc6811a ^




f56b111 ^












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
                                                      

        
               

             
             
            
                 
              
                 
 
                                     
                                

 




                              
 
                     
                                
                           
 
                            

                                       

                                  
                                          
                                                           
          

 





                              





                                         
                                                 
 
 
                   

                                      
                                  
 



                                                                  
                                            


                                                      

                                                      






                                                                                                          
                                 

                                                 
                                                                      
                                                                         
                                                        
                                                                        
                                                                      
 
                                    




                                                                       
 
 

                                               
                     
                                      
                                                                               
                                                                                              
                                                                                                        
 








                                                               
                               




                                                              












                                                                         
package svc // import "github.com/getwtxt/getwtxt/svc"

import (
	"bytes"
	"fmt"
	"log"
	"net"
	"os"
	"strings"
	"sync"
	"testing"

	"github.com/getwtxt/registry"
	"github.com/spf13/viper"
)

var (
	testport     string
	initTestOnce sync.Once
	initDBOnce   sync.Once
)

func initTestConf() {
	initTestOnce.Do(func() {
		logToNull()

		testConfig()
		tmpls = initTemplates()
		pingAssets()

		confObj.Mu.RLock()
		defer confObj.Mu.RUnlock()
		testport = fmt.Sprintf(":%v", confObj.Port)
	})
}

func initTestDB() {
	initDBOnce.Do(func() {
		initDatabase()
	})
}

func logToNull() {
	hush, err := os.Open("/dev/null")
	if err != nil {
		log.Printf("%v\n", err)
	}
	log.SetOutput(hush)
	reqLog = log.New(hush, "", log.LstdFlags)
}

func testConfig() {
	viper.SetConfigName("getwtxt")
	viper.SetConfigType("yml")
	viper.AddConfigPath("../")

	viper.SetDefault("BehindProxy", true)
	viper.SetDefault("UseTLS", false)
	viper.SetDefault("TLSCert", "/etc/ssl/getwtxt.pem")
	viper.SetDefault("TLSKey", "/etc/ssl/private/getwtxt.pem")
	viper.SetDefault("ListenPort", 9001)
	viper.SetDefault("DatabasePath", "getwtxt.db")
	viper.SetDefault("AssetsDirectory", "assets")
	viper.SetDefault("DatabaseType", "leveldb")
	viper.SetDefault("ReCacheInterval", "9m")
	viper.SetDefault("DatabasePushInterval", "4m")
	viper.SetDefault("Instance.SiteName", "getwtxt")
	viper.SetDefault("Instance.OwnerName", "Anonymous Microblogger")
	viper.SetDefault("Instance.Email", "nobody@knows")
	viper.SetDefault("Instance.URL", "https://twtxt.example.com")
	viper.SetDefault("Instance.Description", "A fast, resilient twtxt registry server written in Go!")

	confObj.Mu.Lock()
	defer confObj.Mu.Unlock()

	confObj.Port = viper.GetInt("ListenPort")
	confObj.AssetsDir = "../" + viper.GetString("AssetsDirectory")
	confObj.DBType = strings.ToLower(viper.GetString("DatabaseType"))
	confObj.DBPath = viper.GetString("DatabasePath")
	confObj.CacheInterval = viper.GetDuration("StatusFetchInterval")
	confObj.DBInterval = viper.GetDuration("DatabasePushInterval")

	confObj.Instance.Vers = Vers
	confObj.Instance.Name = viper.GetString("Instance.SiteName")
	confObj.Instance.URL = viper.GetString("Instance.URL")
	confObj.Instance.Owner = viper.GetString("Instance.OwnerName")
	confObj.Instance.Mail = viper.GetString("Instance.Email")
	confObj.Instance.Desc = viper.GetString("Instance.Description")
}

// Creates a fresh mock registry, with a single
// user and their statuses, for testing.
func mockRegistry() {
	twtxtCache = registry.New(nil)
	statuses, _, _ := registry.GetTwtxt("https://gbmor.dev/twtxt.txt", nil)
	parsed, _ := registry.ParseUserTwtxt(statuses, "gbmor", "https://gbmor.dev/twtxt.txt")
	_ = twtxtCache.AddUser("gbmor", "https://gbmor.dev/twtxt.txt", net.ParseIP("127.0.0.1"), parsed)
}

// Empties the mock registry's user of statuses
// for functions that test status modifications
func killStatuses() {
	twtxtCache.Mu.Lock()
	user := twtxtCache.Users["https://gbmor.dev/twtxt.txt"]
	user.Mu.Lock()

	user.Status = registry.NewTimeMap()
	user.LastModified = "0"
	twtxtCache.Users["https://gbmor.dev/twtxt.txt"] = user

	user.Mu.Unlock()
	twtxtCache.Mu.Unlock()
}

func Test_errLog(t *testing.T) {
	t.Run("Log to Buffer", func(t *testing.T) {
		b := []byte{}
		buf := bytes.NewBuffer(b)
		log.SetOutput(buf)
		err := fmt.Errorf("test error")
		errLog("", err)
		if !strings.Contains(buf.String(), "test error") {
			t.Errorf("Output Incorrect: %#v\n", buf.String())
		}
	})
}