Compare commits

..

3 Commits

Author SHA1 Message Date
1b2c6933e1
clean up test 2024-09-30 22:27:37 +03:00
94d1271dbb
update 2024-09-30 22:22:00 +03:00
e7a3de526c
remove log 2024-09-30 18:09:53 +03:00

View File

@ -3,7 +3,6 @@ package main
import ( import (
"bytes" "bytes"
"context" "context"
"fmt"
"testing" "testing"
"git.grassecon.net/urdt/ussd/driver" "git.grassecon.net/urdt/ussd/driver"
@ -17,29 +16,31 @@ var (
func TestUserRegistration(t *testing.T) { func TestUserRegistration(t *testing.T) {
en, _ := enginetest.TestEngine("session1234112") en, _ := enginetest.TestEngine("session1234112")
defer en.Finish() defer en.Finish()
//var err error
ctx := context.Background() ctx := context.Background()
sessions := testData sessions := testData
for _, session := range sessions { for _, session := range sessions {
groups := driver.FilterGroupsByName(session.Groups, "account_creation_successful") groups := driver.FilterGroupsByName(session.Groups, "account_creation_successful")
for _, group := range groups { for _, group := range groups {
for _, step := range group.Steps { for _, step := range group.Steps {
// for {
_, err := en.Exec(ctx, []byte(step.Input)) cont, err := en.Exec(ctx, []byte(step.Input))
if err != nil { if err != nil {
t.Fail() t.Errorf("Test case '%s' failed at input '%s': %v", group.Name, step.Input, err)
return
}
if !cont {
break
} }
w := bytes.NewBuffer(nil) w := bytes.NewBuffer(nil)
_, err = en.Flush(ctx, w) _, err = en.Flush(ctx, w)
if err != nil { if err != nil {
t.Fatal(err) t.Errorf("Test case '%s' failed during Flush: %v", group.Name, err)
} }
b := w.Bytes() b := w.Bytes()
if !bytes.Equal(b, []byte(step.ExpectedContent)) { if !bytes.Equal(b, []byte(step.ExpectedContent)) {
t.Fatalf("expected:\n\t%s\ngot:\n\t%s\n", step.ExpectedContent, b) t.Fatalf("expected:\n\t%s\ngot:\n\t%s\n", step.ExpectedContent, b)
} }
// }
} }
} }
@ -56,7 +57,6 @@ func TestTerms(t *testing.T) {
groups := driver.FilterGroupsByName(session.Groups, "account_creation_accept_terms") groups := driver.FilterGroupsByName(session.Groups, "account_creation_accept_terms")
for _, group := range groups { for _, group := range groups {
for _, step := range group.Steps { for _, step := range group.Steps {
// for {
_, err := en.Exec(ctx, []byte(step.Input)) _, err := en.Exec(ctx, []byte(step.Input))
if err != nil { if err != nil {
t.Fail() t.Fail()
@ -65,14 +65,12 @@ func TestTerms(t *testing.T) {
w := bytes.NewBuffer(nil) w := bytes.NewBuffer(nil)
_, err = en.Flush(ctx, w) _, err = en.Flush(ctx, w)
if err != nil { if err != nil {
t.Fatal(err) t.Errorf("Test case '%s' failed during Flush: %v", group.Name, err)
} }
b := w.Bytes() b := w.Bytes()
fmt.Println("valuehere:", string(b))
if !bytes.Equal(b, []byte(step.ExpectedContent)) { if !bytes.Equal(b, []byte(step.ExpectedContent)) {
t.Fatalf("expected:\n\t%s\ngot:\n\t%s\n", step.ExpectedContent, b) t.Fatalf("expected:\n\t%s\ngot:\n\t%s\n", step.ExpectedContent, b)
} }
// }
} }
} }