update tests

This commit is contained in:
Carlosokumu 2024-09-30 13:25:38 +03:00
parent 4aad23ab30
commit 170d075545
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953
3 changed files with 54 additions and 22 deletions

View File

@ -13,6 +13,7 @@ import (
"git.grassecon.net/urdt/ussd/internal/handlers"
"git.grassecon.net/urdt/ussd/internal/storage"
)
var (
logg = logging.NewVanilla()
scriptDir = path.Join("services", "registration")

View File

@ -6,7 +6,7 @@ import (
"testing"
"git.grassecon.net/urdt/ussd/driver"
"git.grassecon.net/urdt/ussd/enginetest"
"git.grassecon.net/urdt/ussd/engine"
)
var (

View File

@ -1,19 +1,50 @@
[
{
"user_registration": [
"name": "session one",
"groups": [
{
"input": ["","0", "0","1234","1234"],
"expected": "Registration successful"
}
],
"pincheck": [
"name": "account_creation_successful",
"steps": [
{
"input": ["1234"],
"expected": "PIN valid"
"input": "",
"expectedContent": "Welcome to Sarafu Network\nPlease select a language\n0:english\n1:kiswahili"
},
{
"input": ["5678"],
"expected": "PIN invalid"
"input": "0",
"expectedContent": "Do you agree to terms and conditions?\n0:yes\n1:no"
},
{
"input": "0",
"expectedContent": "Please enter a new four number PIN for your account:\n0:Exit"
},
{
"input": "1234",
"expectedContent": "Enter your four number PIN again:"
},
{
"input": "1234",
"expectedContent": "Enter your four number PIN again:"
}
]
},
{
"name": "account_creation_accept_terms",
"steps": [
{
"input": "",
"expectedContent": "Welcome to Sarafu Network\nPlease select a language\n0:english\n1:kiswahili"
},
{
"input": "0",
"expectedContent": "Do you agree to terms and conditions?\n0:yes\n1:no"
},
{
"input": "0",
"expectedContent": "Please enter a new four number PIN for your account:\n0:Exit"
}
]
}
]
}
]