Compare commits

..

No commits in common. "1b2c6933e1a9f7fe29f8ca639f9eb0f02c0185ca" and "f3f276c5490d8d7166073fee672bede6b4e0a3b8" have entirely different histories.

View File

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