forgejo_fusion/modules/regexplru/regexplru_test.go
David Rotermund 49fe13eb4a
Some checks are pending
Integration tests for the release process / release-simulation (push) Waiting to run
10.0.0 base
2025-02-08 23:21:02 +01:00

27 lines
562 B
Go

// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package regexplru
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestRegexpLru(t *testing.T) {
r, err := GetCompiled("a")
require.NoError(t, err)
assert.True(t, r.MatchString("a"))
r, err = GetCompiled("a")
require.NoError(t, err)
assert.True(t, r.MatchString("a"))
assert.EqualValues(t, 1, lruCache.Len())
_, err = GetCompiled("(")
require.Error(t, err)
assert.EqualValues(t, 2, lruCache.Len())
}