table: Implement module.MultiTable for file, sql_query, sql_table and static

This commit is contained in:
fox.cpp 2021-07-11 18:54:41 +03:00
parent 6d44617840
commit 6c5c5d10c4
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
7 changed files with 89 additions and 32 deletions

View file

@ -23,6 +23,7 @@ package table
import (
"context"
"path/filepath"
"reflect"
"testing"
"github.com/foxcpp/maddy/framework/config"
@ -49,8 +50,9 @@ func TestSQL(t *testing.T) {
{
Name: "init",
Args: []string{
"CREATE TABLE testTbl (key TEXT PRIMARY KEY , value TEXT)",
"CREATE TABLE testTbl (key TEXT, value TEXT)",
"INSERT INTO testTbl VALUES ('user1', 'user1a')",
"INSERT INTO testTbl VALUES ('user1', 'user1b')",
"INSERT INTO testTbl VALUES ('user3', NULL)",
},
},
@ -82,4 +84,12 @@ func TestSQL(t *testing.T) {
check("user1", "user1a", true, false)
check("user2", "", false, false)
check("user3", "", false, true)
vals, err := tbl.LookupMulti(context.Background(), "user1")
if err != nil {
t.Error("Unexpected error:", err)
}
if !reflect.DeepEqual(vals, []string{"user1a", "user1b"}) {
t.Error("Wrong result of LookupMulti:", vals)
}
}