mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 07:21:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2024 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package oauth2_provider //nolint
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestGrantAdditionalScopes(t *testing.T) {
 | |
| 	tests := []struct {
 | |
| 		grantScopes    string
 | |
| 		expectedScopes string
 | |
| 	}{
 | |
| 		{"", "all"}, // for old tokens without scope, treat it as "all"
 | |
| 		{"openid profile email", "all"},
 | |
| 		{"openid profile email groups", "all"},
 | |
| 		{"openid profile email all", "all"},
 | |
| 		{"openid profile email read:user all", "all"},
 | |
| 		{"openid profile email groups read:user", "read:user"},
 | |
| 		{"read:user read:repository", "read:repository,read:user"},
 | |
| 		{"read:user write:issue public-only", "public-only,write:issue,read:user"},
 | |
| 		{"openid profile email read:user", "read:user"},
 | |
| 
 | |
| 		// TODO: at the moment invalid tokens are treated as "all" to avoid breaking 1.22 behavior (more details are in GrantAdditionalScopes)
 | |
| 		{"read:invalid_scope", "all"},
 | |
| 		{"read:invalid_scope,write:scope_invalid,just-plain-wrong", "all"},
 | |
| 	}
 | |
| 
 | |
| 	for _, test := range tests {
 | |
| 		t.Run("scope:"+test.grantScopes, func(t *testing.T) {
 | |
| 			result := GrantAdditionalScopes(test.grantScopes)
 | |
| 			assert.Equal(t, test.expectedScopes, string(result))
 | |
| 		})
 | |
| 	}
 | |
| }
 |