mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-04-04 16:33:34 +03:00
filtering/rulelist: imp names
This commit is contained in:
parent
fe2bf68e6b
commit
f01434b37a
2 changed files with 7 additions and 8 deletions
internal/filtering/rulelist
|
@ -18,7 +18,7 @@ import (
|
||||||
|
|
||||||
func TestFilter_Refresh(t *testing.T) {
|
func TestFilter_Refresh(t *testing.T) {
|
||||||
cacheDir := t.TempDir()
|
cacheDir := t.TempDir()
|
||||||
uid := rulelist.MustNewFilterUID()
|
uid := rulelist.MustNewUID()
|
||||||
|
|
||||||
initialFile := filepath.Join(cacheDir, "initial.txt")
|
initialFile := filepath.Join(cacheDir, "initial.txt")
|
||||||
initialData := []byte(
|
initialData := []byte(
|
||||||
|
|
|
@ -25,18 +25,17 @@ type URLFilterID = int
|
||||||
// UID is the type for the unique IDs of filtering-rule lists.
|
// UID is the type for the unique IDs of filtering-rule lists.
|
||||||
type UID uuid.UUID
|
type UID uuid.UUID
|
||||||
|
|
||||||
// NewFilterUID returns a new filtering-rule list UID. Any error returned is an
|
// NewUID returns a new filtering-rule list UID. Any error returned is an error
|
||||||
// error from the cryptographic randomness reader.
|
// from the cryptographic randomness reader.
|
||||||
func NewFilterUID() (uid UID, err error) {
|
func NewUID() (uid UID, err error) {
|
||||||
uuidv7, err := uuid.NewV7()
|
uuidv7, err := uuid.NewV7()
|
||||||
|
|
||||||
return UID(uuidv7), err
|
return UID(uuidv7), err
|
||||||
}
|
}
|
||||||
|
|
||||||
// MustNewFilterUID is a wrapper around [NewFilterUID] that panics if there is
|
// MustNewUID is a wrapper around [NewUID] that panics if there is an error.
|
||||||
// an error.
|
func MustNewUID() (uid UID) {
|
||||||
func MustNewFilterUID() (uid UID) {
|
uid, err := NewUID()
|
||||||
uid, err := NewFilterUID()
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(fmt.Errorf("unexpected uuidv7 error: %w", err))
|
panic(fmt.Errorf("unexpected uuidv7 error: %w", err))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue