Compare commits
No commits in common. "c71f6e76d735ee9e787e84b66db97894bc984873" and "460e6fa2c8b46519393f3713ea4fe0aa85faad82" have entirely different histories.
c71f6e76d7
...
460e6fa2c8
@ -3,7 +3,6 @@ package ussd
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"testing"
|
"testing"
|
||||||
@ -691,6 +690,7 @@ func TestSaveOfferings(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func TestSaveGender(t *testing.T) {
|
func TestSaveGender(t *testing.T) {
|
||||||
// Create a new instance of MockAccountFileHandler
|
// Create a new instance of MockAccountFileHandler
|
||||||
mockFileHandler := new(mocks.MockAccountFileHandler)
|
mockFileHandler := new(mocks.MockAccountFileHandler)
|
||||||
@ -876,95 +876,3 @@ func TestGetAmount(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGetProfileInfo(t *testing.T) {
|
|
||||||
tests := []struct {
|
|
||||||
name string
|
|
||||||
accountData map[string]string
|
|
||||||
readError error
|
|
||||||
expectedResult resource.Result
|
|
||||||
expectedError error
|
|
||||||
}{
|
|
||||||
{
|
|
||||||
name: "Complete Profile",
|
|
||||||
accountData: map[string]string{
|
|
||||||
"FirstName": "John",
|
|
||||||
"FamilyName": "Doe",
|
|
||||||
"Gender": "Male",
|
|
||||||
"YOB": "1980",
|
|
||||||
"Location": "Mombasa",
|
|
||||||
"Offerings": "Product A",
|
|
||||||
},
|
|
||||||
readError: nil,
|
|
||||||
expectedResult: resource.Result{
|
|
||||||
Content: fmt.Sprintf(
|
|
||||||
"Name: %s %s\nGender: %s\nAge: %d\nLocation: %s\nYou provide: %s\n",
|
|
||||||
"John", "Doe", "Male", 44, "Mombasa", "Product A",
|
|
||||||
),
|
|
||||||
},
|
|
||||||
expectedError: nil,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Profile with Not Provided Fields",
|
|
||||||
accountData: map[string]string{
|
|
||||||
"FirstName": "Not provided",
|
|
||||||
"FamilyName": "Doe",
|
|
||||||
"Gender": "Female",
|
|
||||||
"YOB": "1995",
|
|
||||||
"Location": "Not provided",
|
|
||||||
"Offerings": "Service B",
|
|
||||||
},
|
|
||||||
readError: nil,
|
|
||||||
expectedResult: resource.Result{
|
|
||||||
Content: fmt.Sprintf(
|
|
||||||
"Name: %s\nGender: %s\nAge: %d\nLocation: %s\nYou provide: %s\n",
|
|
||||||
"Not provided", "Female", 29, "Not provided", "Service B",
|
|
||||||
),
|
|
||||||
},
|
|
||||||
expectedError: nil,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Profile with YOB as Not provided",
|
|
||||||
accountData: map[string]string{
|
|
||||||
"FirstName": "Not provided",
|
|
||||||
"FamilyName": "Doe",
|
|
||||||
"Gender": "Female",
|
|
||||||
"YOB": "Not provided",
|
|
||||||
"Location": "Not provided",
|
|
||||||
"Offerings": "Service B",
|
|
||||||
},
|
|
||||||
readError: nil,
|
|
||||||
expectedResult: resource.Result{
|
|
||||||
Content: fmt.Sprintf(
|
|
||||||
"Name: %s\nGender: %s\nAge: %s\nLocation: %s\nYou provide: %s\n",
|
|
||||||
"Not provided", "Female", "Not provided", "Not provided", "Service B",
|
|
||||||
),
|
|
||||||
},
|
|
||||||
expectedError: nil,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, tt := range tests {
|
|
||||||
t.Run(tt.name, func(t *testing.T) {
|
|
||||||
// Create a new instance of MockAccountFileHandler
|
|
||||||
mockFileHandler := new(mocks.MockAccountFileHandler)
|
|
||||||
|
|
||||||
// Set up the mock expectations
|
|
||||||
mockFileHandler.On("ReadAccountData").Return(tt.accountData, tt.readError)
|
|
||||||
|
|
||||||
// Create the Handlers instance with the mock file handler
|
|
||||||
h := &Handlers{
|
|
||||||
accountFileHandler: mockFileHandler,
|
|
||||||
}
|
|
||||||
|
|
||||||
// Call the method
|
|
||||||
result, err := h.GetProfileInfo(context.Background(), "get_profile_info", nil)
|
|
||||||
|
|
||||||
// Assert the results
|
|
||||||
assert.Equal(t, tt.expectedResult, result)
|
|
||||||
assert.Equal(t, tt.expectedError, err)
|
|
||||||
|
|
||||||
// Assert all expectations were met
|
|
||||||
mockFileHandler.AssertExpectations(t)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user