summary refs log tree commit diff stats
path: root/post_test.go
blob: 9d04c9eee74ffeceb41e0ad906b2ae272d01883e (plain) (blame)
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
package main

import (
	"net/http"
	"net/http/httptest"
	"net/url"
	"strings"
	"testing"
)

var apiPostUserCases = []struct {
	name    string
	nick    string
	uri     string
	wantErr bool
}{
	{
		name:    "Known Good User",
		nick:    "soltempore",
		uri:     "https://enotty.dk/soltempore.txt",
		wantErr: false,
	},
	{
		name:    "Missing URI",
		nick:    "missinguri",
		uri:     "",
		wantErr: true,
	},
	{
		name:    "Missing Nickname",
		nick:    "",
		uri:     "https://example.com/twtxt.txt",
		wantErr: true,
	},
	{
		name:    "Missing URI and Nickname",
		nick:    "",
		uri:     "",
		wantErr: true,
	},
}

func Test_apiPostUser(t *testing.T) {
	initTestConf()

	for _, tt := range apiPostUserCases {
		t.Run(tt.name, func(t *testing.T) {
			params := url.Values{}
			params.Set("url", tt.uri)
			params.Set("nickname", tt.nick)

			req, err := http.NewRequest("POST", "http://localhost"+testport+"/api/plain/users", strings.NewReader(params.Encode()))
			if err != nil {
				t.Errorf("%v\n", err)
			}

			req.Header.Add("Content-Type", "application/x-www-form-urlencoded")

			rr := httptest.NewRecorder()
			handler := http.HandlerFunc(apiEndpointPOSTHandler)

			handler.ServeHTTP(rr, req)

			if !tt.wantErr {
				if rr.Code != http.StatusOK {
					t.Errorf("Received unexpected non-200 response: %v\n", rr.Code)
				}
			} else {
				if rr.Code != http.StatusBadRequest {
					t.Errorf("Expected 400 Bad Request, but received: %v\n", rr.Code)
				}
			}
		})
	}
}
span class="kd">func (list *List) Remove(child Drawable) { for i, item := range list.Items { if item.Content == child { list.Items = append(list.Items[:i], list.Items[i+1:]...) child.OnInvalidate(nil) list.Invalidate() return } } panic(fmt.Errorf("Attempted to remove unknown child")) } func (list *List) Set(items []Drawable) { for _, item := range list.Items { item.Content.OnInvalidate(nil) } list.Items = make([]*ListItem, len(items)) for i, item := range items { list.Items[i] = &ListItem{Content: item, invalid: true} item.OnInvalidate(list.childInvalidated) } list.Invalidate() } func (list *List) Select(index int) { if index >= len(list.Items) || index < 0 { panic(fmt.Errorf("Attempted to select unknown child")) } list.selected = index list.Items[list.selected].invalid = true list.Invalidate() } func (list *List) ItemHeight(height int) { list.itemHeight = height list.Invalidate() } func (list *List) childInvalidated(child Drawable) { for _, item := range list.Items { if item.Content == child { item.invalid = true if list.onInvalidate != nil { list.onInvalidate(list) } return } } panic(fmt.Errorf("Attempted to invalidate unknown child")) }