mirror of
https://github.com/aclindsa/moneygo.git
synced 2024-10-31 16:00:05 -04:00
testing: Test Lua securities
This commit is contained in:
parent
5dd27a6c56
commit
0dec4001eb
60
internal/handlers/securities_lua_test.go
Normal file
60
internal/handlers/securities_lua_test.go
Normal file
@ -0,0 +1,60 @@
|
||||
package handlers_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/aclindsa/moneygo/internal/handlers"
|
||||
"strconv"
|
||||
"testing"
|
||||
)
|
||||
|
||||
type LuaTest struct {
|
||||
Name string
|
||||
Lua string
|
||||
Expected string
|
||||
}
|
||||
|
||||
func TestLuaSecurities(t *testing.T) {
|
||||
RunWith(t, &data[0], func(t *testing.T, d *TestData) {
|
||||
defaultSecurity, err := getSecurity(d.clients[0], d.users[0].DefaultCurrency)
|
||||
if err != nil {
|
||||
t.Fatalf("Error getting default security: %s", err)
|
||||
}
|
||||
|
||||
for _, lt := range []LuaTest{
|
||||
{"SecurityId", `return get_default_currency().SecurityId`, strconv.FormatInt(defaultSecurity.SecurityId, 10)},
|
||||
{"Name", `return get_default_currency().Name`, defaultSecurity.Name},
|
||||
{"Description", `return get_default_currency().Description`, defaultSecurity.Description},
|
||||
{"Symbol", `return get_default_currency().Symbol`, defaultSecurity.Symbol},
|
||||
{"Precision", `return get_default_currency().Precision`, strconv.FormatInt(int64(defaultSecurity.Precision), 10)},
|
||||
{"Type", `return get_default_currency().Type`, strconv.FormatInt(int64(defaultSecurity.Type), 10)},
|
||||
{"AlternateId", `return get_default_currency().AlternateId`, defaultSecurity.AlternateId},
|
||||
} {
|
||||
lua := fmt.Sprintf(`function test()
|
||||
%s
|
||||
end
|
||||
|
||||
function generate()
|
||||
t = tabulation.new(0)
|
||||
t:title(tostring(test()))
|
||||
return t
|
||||
end`, lt.Lua)
|
||||
r := handlers.Report{
|
||||
Name: lt.Name,
|
||||
Lua: lua,
|
||||
}
|
||||
report, err := createReport(d.clients[0], &r)
|
||||
if err != nil {
|
||||
t.Fatalf("Error creating report: %s", err)
|
||||
}
|
||||
|
||||
tab, err := tabulateReport(d.clients[0], report.ReportId)
|
||||
if err != nil {
|
||||
t.Fatalf("Error tabulating report: %s", err)
|
||||
}
|
||||
|
||||
if tab.Title != lt.Expected {
|
||||
t.Errorf("%s: Returned '%s', expected '%s'", lt.Name, tab.Title, lt.Expected)
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
Loading…
Reference in New Issue
Block a user