summaryrefslogtreecommitdiffstats
path: root/api/oauth_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/oauth_test.go')
-rw-r--r--api/oauth_test.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/api/oauth_test.go b/api/oauth_test.go
index 944b1a95b..a54fbc2c3 100644
--- a/api/oauth_test.go
+++ b/api/oauth_test.go
@@ -278,6 +278,30 @@ func TestDeauthorizeApp(t *testing.T) {
}
}
+func TestRegenerateOAuthAppSecret(t *testing.T) {
+ th := Setup().InitSystemAdmin()
+ AdminClient := th.SystemAdminClient
+
+ utils.Cfg.ServiceSettings.EnableOAuthServiceProvider = true
+
+ app := &model.OAuthApp{Name: "TestApp6" + model.NewId(), Homepage: "https://nowhere.com", Description: "test", CallbackUrls: []string{"https://nowhere.com"}}
+
+ app = AdminClient.Must(AdminClient.RegisterApp(app)).Data.(*model.OAuthApp)
+
+ if regenApp, err := AdminClient.RegenerateOAuthAppSecret(app.Id); err != nil {
+ t.Fatal(err)
+ } else {
+ app2 := regenApp.Data.(*model.OAuthApp)
+ if app2.Id != app.Id {
+ t.Fatal("Should have been the same app Id")
+ }
+
+ if app2.ClientSecret == app.ClientSecret {
+ t.Fatal("Should have been diferent client Secrets")
+ }
+ }
+}
+
func TestOAuthDeleteApp(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
Client := th.BasicClient