mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
table: Implement module.MultiTable for file, sql_query, sql_table and static
This commit is contained in:
parent
6d44617840
commit
6c5c5d10c4
7 changed files with 89 additions and 32 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue