Compare commits
No commits in common. "419cd185fcc23c7d274876d5fca6f8ab81dcf0c3" and "0091fbcabbc5d9e6e6d91bdbb6218e888d542496" have entirely different histories.
419cd185fc
...
0091fbcabb
@ -1676,9 +1676,10 @@ func (h *Handlers) GetVoucherDetails(ctx context.Context, sym string, input []by
|
|||||||
return res, nil
|
return res, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
res.Content = fmt.Sprintf(
|
tokenSymbol := voucherData.TokenSymbol
|
||||||
"Name: %s\nSymbol: %s\nCommodity: %s\nLocation: %s", voucherData.TokenName, voucherData.TokenSymbol, voucherData.TokenCommodity, voucherData.TokenLocation,
|
tokenName := voucherData.TokenName
|
||||||
)
|
|
||||||
|
res.Content = fmt.Sprintf("%s %s", tokenSymbol, tokenName)
|
||||||
|
|
||||||
return res, nil
|
return res, nil
|
||||||
}
|
}
|
||||||
|
@ -2024,42 +2024,3 @@ func TestSetVoucher(t *testing.T) {
|
|||||||
|
|
||||||
assert.Equal(t, string(tempData.TokenSymbol), res.Content)
|
assert.Equal(t, string(tempData.TokenSymbol), res.Content)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGetVoucherDetails(t *testing.T) {
|
|
||||||
ctx, store := InitializeTestStore(t)
|
|
||||||
fm, err := NewFlagManager(flagsPath)
|
|
||||||
if err != nil {
|
|
||||||
t.Logf(err.Error())
|
|
||||||
}
|
|
||||||
mockAccountService := new(mocks.MockAccountService)
|
|
||||||
|
|
||||||
sessionId := "session123"
|
|
||||||
ctx = context.WithValue(ctx, "SessionId", sessionId)
|
|
||||||
expectedResult := resource.Result{}
|
|
||||||
|
|
||||||
tokA_AAddress := "0x0000000000000000000000000000000000000000"
|
|
||||||
|
|
||||||
h := &Handlers{
|
|
||||||
userdataStore: store,
|
|
||||||
flagManager: fm.parser,
|
|
||||||
accountService: mockAccountService,
|
|
||||||
}
|
|
||||||
err = store.WriteEntry(ctx, sessionId, common.DATA_ACTIVE_ADDRESS, []byte(tokA_AAddress))
|
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
|
||||||
}
|
|
||||||
tokenDetails := &models.VoucherDataResult{
|
|
||||||
TokenName: "Token A",
|
|
||||||
TokenSymbol: "TOKA",
|
|
||||||
TokenLocation: "Kilifi,Kenya",
|
|
||||||
TokenCommodity: "Farming",
|
|
||||||
}
|
|
||||||
expectedResult.Content = fmt.Sprintf(
|
|
||||||
"Name: %s\nSymbol: %s\nCommodity: %s\nLocation: %s", tokenDetails.TokenName, tokenDetails.TokenSymbol, tokenDetails.TokenCommodity, tokenDetails.TokenLocation,
|
|
||||||
)
|
|
||||||
mockAccountService.On("VoucherData", string(tokA_AAddress)).Return(tokenDetails, nil)
|
|
||||||
|
|
||||||
res, err := h.GetVoucherDetails(ctx, "SessionId", []byte(""))
|
|
||||||
assert.NoError(t, err)
|
|
||||||
assert.Equal(t, expectedResult, res)
|
|
||||||
}
|
|
||||||
|
@ -1,10 +1,8 @@
|
|||||||
package models
|
package models
|
||||||
|
|
||||||
type VoucherDataResult struct {
|
type VoucherDataResult struct {
|
||||||
TokenName string `json:"tokenName"`
|
TokenName string `json:"tokenName"`
|
||||||
TokenSymbol string `json:"tokenSymbol"`
|
TokenSymbol string `json:"tokenSymbol"`
|
||||||
TokenDecimals int `json:"tokenDecimals"`
|
TokenDecimals int `json:"tokenDecimals"`
|
||||||
SinkAddress string `json:"sinkAddress"`
|
SinkAddress string `json:"sinkAddress"`
|
||||||
TokenCommodity string `json:"tokenCommodity"`
|
|
||||||
TokenLocation string `json:"tokenLocation"`
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user