Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
698 B
27 lines
698 B
// Copyright 2019 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 repofiles |
|
|
|
import ( |
|
"testing" |
|
|
|
"github.com/stretchr/testify/assert" |
|
) |
|
|
|
func TestCleanUploadFileName(t *testing.T) { |
|
t.Run("Clean regular file", func(t *testing.T) { |
|
name := "this/is/test" |
|
cleanName := CleanUploadFileName(name) |
|
expectedCleanName := name |
|
assert.EqualValues(t, expectedCleanName, cleanName) |
|
}) |
|
|
|
t.Run("Clean a .git path", func(t *testing.T) { |
|
name := "this/is/test/.git" |
|
cleanName := CleanUploadFileName(name) |
|
expectedCleanName := "" |
|
assert.EqualValues(t, expectedCleanName, cleanName) |
|
}) |
|
}
|
|
|