Add some basic Session tests
This commit is contained in:
parent
c5ea283777
commit
9dabaa26c7
@ -15,3 +15,73 @@
|
||||
// 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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user