mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 00:02:59 -04:00 
			
		
		
		
	* some repository refactors * remove unnecessary code * Fix test * Remove unnecessary banner
		
			
				
	
	
		
			78 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2017 The Gitea Authors. All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package repo
 | |
| 
 | |
| import (
 | |
| 	"testing"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 	"code.gitea.io/gitea/models/unittest"
 | |
| 
 | |
| 	"github.com/stretchr/testify/assert"
 | |
| )
 | |
| 
 | |
| func TestLookupRedirect(t *testing.T) {
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	repoID, err := LookupRedirect(2, "oldrepo1")
 | |
| 	assert.NoError(t, err)
 | |
| 	assert.EqualValues(t, 1, repoID)
 | |
| 
 | |
| 	_, err = LookupRedirect(unittest.NonexistentID, "doesnotexist")
 | |
| 	assert.True(t, IsErrRedirectNotExist(err))
 | |
| }
 | |
| 
 | |
| func TestNewRedirect(t *testing.T) {
 | |
| 	// redirect to a completely new name
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	repo := unittest.AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
 | |
| 	assert.NoError(t, NewRedirect(db.DefaultContext, repo.OwnerID, repo.ID, repo.Name, "newreponame"))
 | |
| 
 | |
| 	unittest.AssertExistsAndLoadBean(t, &Redirect{
 | |
| 		OwnerID:        repo.OwnerID,
 | |
| 		LowerName:      repo.LowerName,
 | |
| 		RedirectRepoID: repo.ID,
 | |
| 	})
 | |
| 	unittest.AssertExistsAndLoadBean(t, &Redirect{
 | |
| 		OwnerID:        repo.OwnerID,
 | |
| 		LowerName:      "oldrepo1",
 | |
| 		RedirectRepoID: repo.ID,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func TestNewRedirect2(t *testing.T) {
 | |
| 	// redirect to previously used name
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	repo := unittest.AssertExistsAndLoadBean(t, &Repository{ID: 1}).(*Repository)
 | |
| 	assert.NoError(t, NewRedirect(db.DefaultContext, repo.OwnerID, repo.ID, repo.Name, "oldrepo1"))
 | |
| 
 | |
| 	unittest.AssertExistsAndLoadBean(t, &Redirect{
 | |
| 		OwnerID:        repo.OwnerID,
 | |
| 		LowerName:      repo.LowerName,
 | |
| 		RedirectRepoID: repo.ID,
 | |
| 	})
 | |
| 	unittest.AssertNotExistsBean(t, &Redirect{
 | |
| 		OwnerID:        repo.OwnerID,
 | |
| 		LowerName:      "oldrepo1",
 | |
| 		RedirectRepoID: repo.ID,
 | |
| 	})
 | |
| }
 | |
| 
 | |
| func TestNewRedirect3(t *testing.T) {
 | |
| 	// redirect for a previously-unredirected repo
 | |
| 	assert.NoError(t, unittest.PrepareTestDatabase())
 | |
| 
 | |
| 	repo := unittest.AssertExistsAndLoadBean(t, &Repository{ID: 2}).(*Repository)
 | |
| 	assert.NoError(t, NewRedirect(db.DefaultContext, repo.OwnerID, repo.ID, repo.Name, "newreponame"))
 | |
| 
 | |
| 	unittest.AssertExistsAndLoadBean(t, &Redirect{
 | |
| 		OwnerID:        repo.OwnerID,
 | |
| 		LowerName:      repo.LowerName,
 | |
| 		RedirectRepoID: repo.ID,
 | |
| 	})
 | |
| }
 |