From e0636593fbffb25d72b76df0ec2fec6bde23b918 Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Wed, 12 Mar 2025 09:33:22 +0300 Subject: [PATCH] add test for getsuggested alias --- handlers/application/menuhandler_test.go | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/handlers/application/menuhandler_test.go b/handlers/application/menuhandler_test.go index c3b27c4..6b1261e 100644 --- a/handlers/application/menuhandler_test.go +++ b/handlers/application/menuhandler_test.go @@ -3827,3 +3827,28 @@ func TestClearTemporaryValue(t *testing.T) { // assert that the temp value is empty assert.Equal(t, currentTempValue, []byte("")) } + +func TestGetSuggestedAlias(t *testing.T) { + ctx, store := InitializeTestStore(t) + sessionId := "session123" + alias := "foo.sarafu.eth" + + ctx = context.WithValue(ctx, "SessionId", sessionId) + + h := &MenuHandlers{ + userdataStore: store, + } + + //Set a suggested alias a temporary value that will be expected to be in the result content + err := store.WriteEntry(ctx, sessionId, storedb.DATA_TEMPORARY_VALUE, []byte(alias)) + if err != nil { + t.Fatal(err) + } + + res, err := h.GetSuggestedAlias(ctx, "getsuggested_alias", []byte("")) + if err != nil { + t.Fail() + } + assert.Equal(t, res.Content, alias) + +}