Compare commits
No commits in common. "1b2c6933e1a9f7fe29f8ca639f9eb0f02c0185ca" and "f3f276c5490d8d7166073fee672bede6b4e0a3b8" have entirely different histories.
1b2c6933e1
...
f3f276c549
@ -3,6 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"context"
|
"context"
|
||||||
|
"fmt"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.grassecon.net/urdt/ussd/driver"
|
"git.grassecon.net/urdt/ussd/driver"
|
||||||
@ -16,31 +17,29 @@ 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 {
|
||||||
cont, err := en.Exec(ctx, []byte(step.Input))
|
_, err := en.Exec(ctx, []byte(step.Input))
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("Test case '%s' failed at input '%s': %v", group.Name, step.Input, err)
|
t.Fail()
|
||||||
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.Errorf("Test case '%s' failed during Flush: %v", group.Name, err)
|
t.Fatal(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)
|
||||||
}
|
}
|
||||||
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -57,6 +56,7 @@ 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,12 +65,14 @@ 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.Errorf("Test case '%s' failed during Flush: %v", group.Name, err)
|
t.Fatal(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)
|
||||||
}
|
}
|
||||||
|
// }
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user