summaryrefslogtreecommitdiffstats
path: root/api4/user_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/user_test.go')
-rw-r--r--api4/user_test.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/api4/user_test.go b/api4/user_test.go
index 6b8b14951..010f49e73 100644
--- a/api4/user_test.go
+++ b/api4/user_test.go
@@ -3019,3 +3019,28 @@ func TestGetUsersByStatus(t *testing.T) {
}
})
}
+
+func TestRegisterServiceTermsAction(t *testing.T) {
+ th := Setup().InitBasic()
+ defer th.TearDown()
+ Client := th.Client
+
+ success, resp := Client.RegisterServiceTermsAction(th.BasicUser.Id, "st_1", true)
+ CheckErrorMessage(t, resp, "store.sql_service_terms_store.get.no_rows.app_error")
+
+ serviceTerms, err := th.App.CreateServiceTerms("service terms", th.BasicUser.Id)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ success, resp = Client.RegisterServiceTermsAction(th.BasicUser.Id, serviceTerms.Id, true)
+ CheckNoError(t, resp)
+
+ assert.True(t, *success)
+ user, err := th.App.GetUser(th.BasicUser.Id)
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ assert.Equal(t, user.AcceptedServiceTermsId, serviceTerms.Id)
+}