The source headers, LICENSE files, and license metadata had drifted apart. Align the entire project to MIT: - Convert every source-file header to the MIT text across all comment styles (Go, TS, TSX, JS, MJS, SQL, CSS, GraphQL, shell), including SPDX-License-Identifier tags - Set the root and cookie-banner LICENSE files to the MIT text with a "MIT License" title line - Switch the package.json license fields, Docker image label, and cookie-banner README to MIT - Update docs and the genmodels header generator accordingly - Normalize copyright lines to a single format (Copyright (c) <year(s)> Probo Inc <hello@probo.com>.): unify the hello@getprobo.com and hello@probo.inc emails to hello@probo.com and the comma-separated years to a hyphenated range Genuine third-party references are intentionally left untouched: the Lucide icon attributions (Lucide is ISC) and the trivy dependency license allowlist. Signed-off-by: Sacha Al Himdani <sacha@probo.com>
518 lines
18 KiB
Go
518 lines
18 KiB
Go
// Copyright (c) 2026 Probo Inc <hello@probo.com>.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
package coredata_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"go.gearno.de/kit/pg"
|
|
"go.probo.inc/probo/internal/test"
|
|
"go.probo.inc/probo/pkg/coredata"
|
|
"go.probo.inc/probo/pkg/gid"
|
|
)
|
|
|
|
// trackerPatternFixture bootstraps the parent rows that a tracker
|
|
// pattern's FKs require: organization, cookie banner, and a normal
|
|
// cookie category.
|
|
type trackerPatternFixture struct {
|
|
scope *coredata.Scope
|
|
organizationID gid.GID
|
|
cookieBannerID gid.GID
|
|
cookieCategoryID gid.GID
|
|
}
|
|
|
|
func seedTrackerPatternFixture(t *testing.T, ctx context.Context, client *pg.Client) trackerPatternFixture {
|
|
t.Helper()
|
|
|
|
tenantID := gid.NewTenantID()
|
|
scope := coredata.NewScope(tenantID)
|
|
organizationID := gid.New(tenantID, coredata.OrganizationEntityType)
|
|
cookieBannerID := gid.New(tenantID, coredata.CookieBannerEntityType)
|
|
cookieCategoryID := gid.New(tenantID, coredata.CookieCategoryEntityType)
|
|
now := time.Now().UTC()
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
org := &coredata.Organization{
|
|
ID: organizationID,
|
|
TenantID: tenantID,
|
|
Name: "TrackerPattern Test Org",
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
if err := org.Insert(ctx, tx); err != nil {
|
|
return err
|
|
}
|
|
|
|
banner := &coredata.CookieBanner{
|
|
ID: cookieBannerID,
|
|
OrganizationID: organizationID,
|
|
Name: "TrackerPattern Test Banner",
|
|
Origin: "https://tracker-pattern-test.example.com",
|
|
State: coredata.CookieBannerStateActive,
|
|
CookiePolicyURL: "https://tracker-pattern-test.example.com/cookies",
|
|
ConsentExpiryDays: 180,
|
|
ShowBranding: false,
|
|
DefaultLanguage: "en",
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
if err := banner.Insert(ctx, tx, scope); err != nil {
|
|
return err
|
|
}
|
|
|
|
category := &coredata.CookieCategory{
|
|
ID: cookieCategoryID,
|
|
OrganizationID: organizationID,
|
|
CookieBannerID: cookieBannerID,
|
|
Name: "Analytics",
|
|
Slug: "analytics",
|
|
Description: "",
|
|
Kind: coredata.CookieCategoryKindNormal,
|
|
Rank: 1,
|
|
GCMConsentTypes: []string{},
|
|
PostHogConsent: false,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
if err := category.Insert(ctx, tx, scope); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}))
|
|
|
|
t.Cleanup(func() {
|
|
_ = client.WithTx(context.Background(), func(ctx context.Context, tx pg.Tx) error {
|
|
if _, err := tx.Exec(ctx, `DELETE FROM tracker_patterns WHERE cookie_banner_id = $1`, cookieBannerID); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := tx.Exec(ctx, `DELETE FROM cookie_categories WHERE cookie_banner_id = $1`, cookieBannerID); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := tx.Exec(ctx, `DELETE FROM cookie_banners WHERE id = $1`, cookieBannerID); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := tx.Exec(ctx, `DELETE FROM organizations WHERE id = $1`, organizationID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
})
|
|
})
|
|
|
|
return trackerPatternFixture{
|
|
scope: scope,
|
|
organizationID: organizationID,
|
|
cookieBannerID: cookieBannerID,
|
|
cookieCategoryID: cookieCategoryID,
|
|
}
|
|
}
|
|
|
|
func seedTrackerPattern(
|
|
t *testing.T,
|
|
ctx context.Context,
|
|
client *pg.Client,
|
|
fx trackerPatternFixture,
|
|
pattern string,
|
|
matchType coredata.TrackerPatternMatchType,
|
|
source coredata.CookieSource,
|
|
) *coredata.TrackerPattern {
|
|
t.Helper()
|
|
|
|
now := time.Now().UTC().Truncate(time.Microsecond)
|
|
maxAge := 3600
|
|
tp := &coredata.TrackerPattern{
|
|
ID: gid.New(fx.scope.GetTenantID(), coredata.TrackerPatternEntityType),
|
|
OrganizationID: fx.organizationID,
|
|
CookieBannerID: fx.cookieBannerID,
|
|
CookieCategoryID: fx.cookieCategoryID,
|
|
TrackerType: coredata.TrackerTypeCookie,
|
|
Pattern: pattern,
|
|
MatchType: matchType,
|
|
DisplayName: pattern,
|
|
Description: "",
|
|
MaxAgeSeconds: &maxAge,
|
|
Source: &source,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
return tp.Insert(ctx, tx, fx.scope)
|
|
}))
|
|
|
|
return tp
|
|
}
|
|
|
|
// TestTrackerPattern_Update_WritesSource pins the source-promotion
|
|
// path now folded into Update: load the row, bump Source, call
|
|
// Update, and verify the new value lands in the DB. This is the
|
|
// invariant the pattern-analysis worker and reportDetectedTracker
|
|
// rely on when promoting PRE_EXISTING → SCRIPT/EXTENSION; if Update
|
|
// stops writing `source`, every "ratchet the signal" call site
|
|
// silently regresses without the wrapping `shouldPromoteSource`
|
|
// gate noticing.
|
|
func TestTrackerPattern_Update_WritesSource(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
client := test.PGClient(t)
|
|
ctx := context.Background()
|
|
fx := seedTrackerPatternFixture(t, ctx, client)
|
|
|
|
tp := seedTrackerPattern(
|
|
t,
|
|
ctx,
|
|
client,
|
|
fx,
|
|
"*_session",
|
|
coredata.TrackerPatternMatchTypeGlob,
|
|
coredata.CookieSourcePreExisting,
|
|
)
|
|
|
|
bumpedAt := time.Now().UTC().Add(time.Hour).Truncate(time.Microsecond)
|
|
newSource := coredata.CookieSourceScript
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
var loaded coredata.TrackerPattern
|
|
if err := loaded.LoadByID(ctx, tx, fx.scope, tp.ID); err != nil {
|
|
return err
|
|
}
|
|
|
|
loaded.Source = &newSource
|
|
loaded.UpdatedAt = bumpedAt
|
|
|
|
return loaded.Update(ctx, tx, fx.scope)
|
|
}))
|
|
|
|
reloaded := &coredata.TrackerPattern{}
|
|
|
|
require.NoError(t, client.WithConn(ctx, func(ctx context.Context, conn pg.Querier) error {
|
|
return reloaded.LoadByID(ctx, conn, fx.scope, tp.ID)
|
|
}))
|
|
|
|
require.NotNil(t, reloaded.Source)
|
|
assert.Equal(t, coredata.CookieSourceScript, *reloaded.Source, "DB row must reflect the new source")
|
|
assert.True(t, reloaded.UpdatedAt.Equal(bumpedAt), "DB row must reflect the new updated_at")
|
|
}
|
|
|
|
// TestTrackerPattern_Update_NotFoundForMissingRow pins the
|
|
// ErrResourceNotFound contract: callers like the worker and
|
|
// reportDetectedTracker assume an unmatched UPDATE surfaces as
|
|
// ErrResourceNotFound so they can distinguish "row vanished mid-txn"
|
|
// from arbitrary pg errors.
|
|
func TestTrackerPattern_Update_NotFoundForMissingRow(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
client := test.PGClient(t)
|
|
ctx := context.Background()
|
|
fx := seedTrackerPatternFixture(t, ctx, client)
|
|
|
|
maxAge := 3600
|
|
source := coredata.CookieSourceScript
|
|
now := time.Now().UTC().Truncate(time.Microsecond)
|
|
tp := &coredata.TrackerPattern{
|
|
ID: gid.New(fx.scope.GetTenantID(), coredata.TrackerPatternEntityType),
|
|
OrganizationID: fx.organizationID,
|
|
CookieBannerID: fx.cookieBannerID,
|
|
CookieCategoryID: fx.cookieCategoryID,
|
|
TrackerType: coredata.TrackerTypeCookie,
|
|
Pattern: "*_ghost",
|
|
MatchType: coredata.TrackerPatternMatchTypeGlob,
|
|
DisplayName: "*_ghost",
|
|
MaxAgeSeconds: &maxAge,
|
|
Source: &source,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
|
|
err := client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
return tp.Update(ctx, tx, fx.scope)
|
|
})
|
|
|
|
assert.ErrorIs(t, err, coredata.ErrResourceNotFound)
|
|
}
|
|
|
|
// TestResetStaleMappings pins the mapping stale-recovery contract: a row
|
|
// dequeued (mapping_requested_at IS NULL) but never finished (no
|
|
// common_tracker_pattern_id) and idle past the window is re-armed, while
|
|
// a recently claimed row (clock not yet elapsed) and a completed row
|
|
// (catalog row assigned) are left untouched. Without this sweep a crash
|
|
// between Process phases would strand the pattern unmapped forever.
|
|
func TestResetStaleMappings(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
client := test.PGClient(t)
|
|
ctx := context.Background()
|
|
fx := seedTrackerPatternFixture(t, ctx, client)
|
|
|
|
now := time.Now().UTC().Truncate(time.Microsecond)
|
|
old := now.Add(-time.Hour)
|
|
maxAge := 3600
|
|
source := coredata.CookieSourceScript
|
|
|
|
newPattern := func(pattern string, updatedAt time.Time, commonID *gid.GID) *coredata.TrackerPattern {
|
|
tp := &coredata.TrackerPattern{
|
|
ID: gid.New(fx.scope.GetTenantID(), coredata.TrackerPatternEntityType),
|
|
OrganizationID: fx.organizationID,
|
|
CookieBannerID: fx.cookieBannerID,
|
|
CookieCategoryID: fx.cookieCategoryID,
|
|
CommonTrackerPatternID: commonID,
|
|
TrackerType: coredata.TrackerTypeCookie,
|
|
Pattern: pattern,
|
|
MatchType: coredata.TrackerPatternMatchTypeExact,
|
|
DisplayName: pattern,
|
|
MaxAgeSeconds: &maxAge,
|
|
Source: &source,
|
|
CreatedAt: old,
|
|
UpdatedAt: updatedAt,
|
|
}
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
return tp.Insert(ctx, tx, fx.scope)
|
|
}))
|
|
|
|
return tp
|
|
}
|
|
|
|
commonPattern := coredata.CommonTrackerPattern{
|
|
ID: gid.New(gid.NilTenant, coredata.CommonTrackerPatternEntityType),
|
|
TrackerType: coredata.TrackerTypeCookie,
|
|
Pattern: "mapped_catalog_" + gid.New(gid.NilTenant, coredata.CommonTrackerPatternEntityType).String(),
|
|
MatchType: coredata.TrackerPatternMatchTypeExact,
|
|
Confidence: 0.5,
|
|
CreatedAt: old,
|
|
UpdatedAt: old,
|
|
}
|
|
insertCommonTrackerPattern(t, ctx, client, commonPattern)
|
|
|
|
stale := newPattern("stale_unfinished", old, nil)
|
|
fresh := newPattern("fresh_unfinished", now, nil)
|
|
completed := newPattern("completed_mapping", old, &commonPattern.ID)
|
|
|
|
require.NoError(t, client.WithConn(ctx, func(ctx context.Context, conn pg.Querier) error {
|
|
return coredata.ResetStaleMappings(ctx, conn, 10*time.Minute)
|
|
}))
|
|
|
|
load := func(id gid.GID) coredata.TrackerPattern {
|
|
var reloaded coredata.TrackerPattern
|
|
|
|
require.NoError(t, client.WithConn(ctx, func(ctx context.Context, conn pg.Querier) error {
|
|
return reloaded.LoadByID(ctx, conn, fx.scope, id)
|
|
}))
|
|
|
|
return reloaded
|
|
}
|
|
|
|
assert.NotNil(t, load(stale.ID).MappingRequestedAt, "claimed-but-unfinished idle row must be re-armed")
|
|
assert.Nil(t, load(fresh.ID).MappingRequestedAt, "recently claimed row must not be re-armed before the window elapses")
|
|
assert.Nil(t, load(completed.ID).MappingRequestedAt, "completed mapping (catalog row assigned) must never be re-armed")
|
|
}
|
|
|
|
// TestRequestMappingForUnmappedByInitiatorDomains pins the new-domain
|
|
// re-map cascade: when a vendor gains owned domains, only still-unmapped
|
|
// org patterns whose detected trackers share one of those domains are
|
|
// re-armed. A pattern already linked to a vendor (via a catalog row that
|
|
// carries a common_third_party_id, or via third_party_id), an
|
|
// extension-sourced pattern, and a pattern whose trackers were seen on a
|
|
// different domain are all left untouched. An empty domain set is a
|
|
// no-op.
|
|
func TestRequestMappingForUnmappedByInitiatorDomains(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
client := test.PGClient(t)
|
|
ctx := context.Background()
|
|
fx := seedTrackerPatternFixture(t, ctx, client)
|
|
|
|
const (
|
|
vendorDomain = "vendor.example"
|
|
otherDomain = "unrelated.example"
|
|
)
|
|
|
|
now := time.Now().UTC().Truncate(time.Microsecond)
|
|
maxAge := 3600
|
|
|
|
// Cascade-deletes from the fixture's cookie_banner / organization
|
|
// drops cleanup take care of detected_trackers and third_parties; run
|
|
// these first (LIFO) so nothing is stranded if a FK lacks the cascade.
|
|
t.Cleanup(func() {
|
|
_ = client.WithTx(context.Background(), func(ctx context.Context, tx pg.Tx) error {
|
|
if _, err := tx.Exec(ctx, `DELETE FROM detected_trackers WHERE cookie_banner_id = $1`, fx.cookieBannerID); err != nil {
|
|
return err
|
|
}
|
|
|
|
if _, err := tx.Exec(ctx, `DELETE FROM third_parties WHERE organization_id = $1`, fx.organizationID); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
})
|
|
})
|
|
|
|
// A catalog row already linked to a vendor: patterns pointing at it
|
|
// are considered mapped and must be left alone.
|
|
party := seedCommonThirdParty(t, ctx, client)
|
|
linkedCommon := coredata.CommonTrackerPattern{
|
|
ID: gid.New(gid.NilTenant, coredata.CommonTrackerPatternEntityType),
|
|
CommonThirdPartyID: &party.ID,
|
|
TrackerType: coredata.TrackerTypeCookie,
|
|
Pattern: "linked_catalog_" + gid.New(gid.NilTenant, coredata.CommonTrackerPatternEntityType).String(),
|
|
MatchType: coredata.TrackerPatternMatchTypeExact,
|
|
Confidence: 0.7,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
insertCommonTrackerPattern(t, ctx, client, linkedCommon)
|
|
|
|
// An org third party for the third_party_id-linked pattern.
|
|
orgThirdPartyID := gid.New(fx.scope.GetTenantID(), coredata.ThirdPartyEntityType)
|
|
orgThirdParty := coredata.ThirdParty{
|
|
ID: orgThirdPartyID,
|
|
OrganizationID: fx.organizationID,
|
|
Name: "Org Vendor",
|
|
Category: coredata.ThirdPartyCategoryAnalytics,
|
|
Certifications: []string{},
|
|
Countries: coredata.CountryCodes{},
|
|
Level: 1,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
return orgThirdParty.Insert(ctx, tx, fx.scope)
|
|
}))
|
|
|
|
newPattern := func(
|
|
pattern string,
|
|
source coredata.CookieSource,
|
|
commonID *gid.GID,
|
|
thirdPartyID *gid.GID,
|
|
) *coredata.TrackerPattern {
|
|
src := source
|
|
tp := &coredata.TrackerPattern{
|
|
ID: gid.New(fx.scope.GetTenantID(), coredata.TrackerPatternEntityType),
|
|
OrganizationID: fx.organizationID,
|
|
CookieBannerID: fx.cookieBannerID,
|
|
CookieCategoryID: fx.cookieCategoryID,
|
|
CommonTrackerPatternID: commonID,
|
|
ThirdPartyID: thirdPartyID,
|
|
TrackerType: coredata.TrackerTypeCookie,
|
|
Pattern: pattern,
|
|
MatchType: coredata.TrackerPatternMatchTypeExact,
|
|
DisplayName: pattern,
|
|
MaxAgeSeconds: &maxAge,
|
|
Source: &src,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
return tp.Insert(ctx, tx, fx.scope)
|
|
}))
|
|
|
|
return tp
|
|
}
|
|
|
|
seedDetectedTracker := func(patternID gid.GID, identifier, domain string) {
|
|
d := domain
|
|
dt := &coredata.DetectedTracker{
|
|
ID: gid.New(fx.scope.GetTenantID(), coredata.DetectedTrackerEntityType),
|
|
CookieBannerID: fx.cookieBannerID,
|
|
TrackerPatternID: &patternID,
|
|
TrackerType: coredata.TrackerTypeCookie,
|
|
Identifier: identifier,
|
|
InitiatorDomain: &d,
|
|
LastDetectedAt: now,
|
|
CreatedAt: now,
|
|
UpdatedAt: now,
|
|
}
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
_, err := dt.Upsert(ctx, tx, fx.scope)
|
|
|
|
return err
|
|
}))
|
|
}
|
|
|
|
unmapped := newPattern("unmapped", coredata.CookieSourceScript, nil, nil)
|
|
catalogLinked := newPattern("catalog_linked", coredata.CookieSourceScript, &linkedCommon.ID, nil)
|
|
thirdPartyLinked := newPattern("third_party_linked", coredata.CookieSourceScript, nil, &orgThirdPartyID)
|
|
extension := newPattern("extension", coredata.CookieSourceExtension, nil, nil)
|
|
otherDomainPattern := newPattern("other_domain", coredata.CookieSourceScript, nil, nil)
|
|
|
|
seedDetectedTracker(unmapped.ID, "unmapped_id", vendorDomain)
|
|
seedDetectedTracker(catalogLinked.ID, "catalog_linked_id", vendorDomain)
|
|
seedDetectedTracker(thirdPartyLinked.ID, "third_party_linked_id", vendorDomain)
|
|
seedDetectedTracker(extension.ID, "extension_id", vendorDomain)
|
|
seedDetectedTracker(otherDomainPattern.ID, "other_domain_id", otherDomain)
|
|
|
|
var count int64
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
var patterns coredata.TrackerPatterns
|
|
|
|
var err error
|
|
|
|
count, err = patterns.RequestMappingForUnmappedByInitiatorDomains(ctx, tx, []string{vendorDomain})
|
|
|
|
return err
|
|
}))
|
|
|
|
assert.Equal(t, int64(1), count, "only the unmapped pattern sharing the domain must be re-armed")
|
|
|
|
load := func(id gid.GID) coredata.TrackerPattern {
|
|
var reloaded coredata.TrackerPattern
|
|
|
|
require.NoError(t, client.WithConn(ctx, func(ctx context.Context, conn pg.Querier) error {
|
|
return reloaded.LoadByID(ctx, conn, fx.scope, id)
|
|
}))
|
|
|
|
return reloaded
|
|
}
|
|
|
|
assert.NotNil(t, load(unmapped.ID).MappingRequestedAt, "unmapped pattern sharing the domain must be re-armed")
|
|
assert.Nil(t, load(catalogLinked.ID).MappingRequestedAt, "pattern linked to a vendor via the catalog must be left alone")
|
|
assert.Nil(t, load(thirdPartyLinked.ID).MappingRequestedAt, "pattern linked to an org third party must be left alone")
|
|
assert.Nil(t, load(extension.ID).MappingRequestedAt, "extension-sourced pattern must be skipped")
|
|
assert.Nil(t, load(otherDomainPattern.ID).MappingRequestedAt, "pattern seen on a different domain must not be re-armed")
|
|
|
|
// Empty domain set is a no-op.
|
|
var emptyCount int64
|
|
|
|
require.NoError(t, client.WithTx(ctx, func(ctx context.Context, tx pg.Tx) error {
|
|
var patterns coredata.TrackerPatterns
|
|
|
|
var err error
|
|
|
|
emptyCount, err = patterns.RequestMappingForUnmappedByInitiatorDomains(ctx, tx, nil)
|
|
|
|
return err
|
|
}))
|
|
|
|
assert.Equal(t, int64(0), emptyCount, "empty domain set must be a no-op")
|
|
}
|