Some checks failed
Build and Release / Create Release (push) Successful in 0s
Trigger Vault Plugin Rebuild / Trigger Vault Rebuild (push) Successful in 0s
Build and Release / Integration Tests (PostgreSQL) (push) Successful in 2m48s
Build and Release / Lint (push) Failing after 5m2s
Build and Release / Build Binaries (amd64, windows, windows-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (amd64, linux, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, darwin, linux-latest) (push) Has been skipped
Build and Release / Build Binaries (arm64, linux, linux-latest) (push) Has been skipped
Build and Release / Unit Tests (push) Successful in 5m37s
Go's semantic import versioning requires v2+ modules to include the major version in the module path. This enables using proper version tags (v3.x.x) instead of pseudo-versions. Updated module path: code.gitcaddy.com/server/v3
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package markup
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitcaddy.com/server/v3/modules/setting"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCamoHandleLink(t *testing.T) {
|
|
setting.AppURL = "https://gitea.com"
|
|
// Test media proxy
|
|
setting.Camo.Enabled = true
|
|
setting.Camo.ServerURL = "https://image.proxy"
|
|
setting.Camo.HMACKey = "geheim"
|
|
|
|
assert.Equal(t,
|
|
"https://gitea.com/img.jpg",
|
|
camoHandleLink("https://gitea.com/img.jpg"))
|
|
assert.Equal(t,
|
|
"https://testimages.org/img.jpg",
|
|
camoHandleLink("https://testimages.org/img.jpg"))
|
|
assert.Equal(t,
|
|
"https://image.proxy/eivin43gJwGVIjR9MiYYtFIk0mw/aHR0cDovL3Rlc3RpbWFnZXMub3JnL2ltZy5qcGc",
|
|
camoHandleLink("http://testimages.org/img.jpg"))
|
|
|
|
setting.Camo.Always = true
|
|
assert.Equal(t,
|
|
"https://gitea.com/img.jpg",
|
|
camoHandleLink("https://gitea.com/img.jpg"))
|
|
assert.Equal(t,
|
|
"https://image.proxy/tkdlvmqpbIr7SjONfHNgEU622y0/aHR0cHM6Ly90ZXN0aW1hZ2VzLm9yZy9pbWcuanBn",
|
|
camoHandleLink("https://testimages.org/img.jpg"))
|
|
assert.Equal(t,
|
|
"https://image.proxy/eivin43gJwGVIjR9MiYYtFIk0mw/aHR0cDovL3Rlc3RpbWFnZXMub3JnL2ltZy5qcGc",
|
|
camoHandleLink("http://testimages.org/img.jpg"))
|
|
|
|
// Restore previous settings
|
|
setting.Camo.Enabled = false
|
|
}
|