aboutsummaryrefslogtreecommitdiff
path: root/config/session_test.go
blob: ca283d968414161fd5d5a865ffc4a517d31be0d6 (plain)
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
// gomuks - A terminal Matrix client written in Go.
// Copyright (C) 2018 Tulir Asokan
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

package config_test

import (
	"testing"
	"maunium.net/go/gomuks/config"
	"github.com/stretchr/testify/assert"
	"os"
)

func TestConfig_NewSession(t *testing.T) {
	defer os.RemoveAll("/tmp/gomuks-test-7")

	cfg := config.NewConfig("/tmp/gomuks-test-7", "/tmp/gomuks-test-7")
	cfg.Load()
	session := cfg.NewSession("@tulir:maunium.net")
	assert.Equal(t, session.GetUserID(), "@tulir:maunium.net")
	assert.Empty(t, session.Rooms)

	_, err1 := os.Stat("/tmp/gomuks-test-7/@tulir:maunium.net.session")
	assert.True(t, os.IsNotExist(err1))
	assert.Nil(t, session.Save())
	_, err2 := os.Stat("/tmp/gomuks-test-7/@tulir:maunium.net.session")
	assert.Nil(t, err2)
}

func TestSession_Load(t *testing.T) {
	defer os.RemoveAll("/tmp/gomuks-test-8")

	cfg := config.NewConfig("/tmp/gomuks-test-8", "/tmp/gomuks-test-8")
	cfg.Load()
	session := cfg.NewSession("@tulir:maunium.net")
	session.NextBatch = "foobar"
	session.FilterID = "1234"

	assert.Nil(t, session.Save())

	cfg = config.NewConfig("/tmp/gomuks-test-8", "/tmp/gomuks-test-8")
	cfg.LoadSession("@tulir:maunium.net")
	assert.NotNil(t, cfg.Session)
	assert.Equal(t, "foobar", cfg.Session.LoadNextBatch("@tulir:maunium.net"))
	assert.Equal(t, "1234", cfg.Session.LoadFilterID("@tulir:maunium.net"))
}

func TestSession_Clear(t *testing.T) {
	defer os.RemoveAll("/tmp/gomuks-test-9")

	cfg := config.NewConfig("/tmp/gomuks-test-9", "/tmp/gomuks-test-9")
	cfg.Load()
	session := cfg.NewSession("@tulir:maunium.net")
	session.NextBatch = "foobar"
	session.FilterID = "1234"

	assert.Nil(t, session.Save())

	cfg = config.NewConfig("/tmp/gomuks-test-9", "/tmp/gomuks-test-9")
	cfg.LoadSession("@tulir:maunium.net")
	assert.NotNil(t, cfg.Session)
	assert.Equal(t, "foobar", cfg.Session.LoadNextBatch("@tulir:maunium.net"))
	assert.Equal(t, "1234", cfg.Session.LoadFilterID("@tulir:maunium.net"))

	cfg.Session.Clear()
	assert.Empty(t, cfg.Session.FilterID)
	assert.Empty(t, cfg.Session.NextBatch)
	assert.Empty(t, cfg.Session.Rooms)

	cfg = config.NewConfig("/tmp/gomuks-test-9", "/tmp/gomuks-test-9")
	cfg.LoadSession("@tulir:maunium.net")
	assert.Empty(t, cfg.Session.FilterID)
	assert.Empty(t, cfg.Session.NextBatch)
	assert.Empty(t, cfg.Session.Rooms)
}