Files
probo/pkg/cookiebanner/tracker_mapping_agent_test.go
Sacha Al Himdani 4c57d201a4 Make license declarations consistently MIT
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>
2026-07-13 16:21:14 +02:00

387 lines
11 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 cookiebanner
import (
"context"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.probo.inc/probo/pkg/coredata"
"go.probo.inc/probo/pkg/gid"
)
func TestNameMatchesSiteDomain(t *testing.T) {
t.Parallel()
tests := []struct {
name string
vendorName string
siteOrigin string
expected bool
}{
{
name: "site brand matches own domain",
vendorName: "Letaido",
siteOrigin: "https://letaido.com",
expected: true,
},
{
name: "case and spacing insensitive",
vendorName: " LET AIDO ",
siteOrigin: "https://letaido.com",
expected: true,
},
{
name: "matches against subdomain origin",
vendorName: "Letaido",
siteOrigin: "https://app.letaido.com",
expected: true,
},
{
name: "matches full domain form",
vendorName: "letaido.com",
siteOrigin: "https://letaido.com",
expected: true,
},
{
name: "unrelated vendor is not the site",
vendorName: "Google Analytics",
siteOrigin: "https://letaido.com",
expected: false,
},
{
name: "empty vendor name",
vendorName: "",
siteOrigin: "https://letaido.com",
expected: false,
},
{
name: "empty origin",
vendorName: "Letaido",
siteOrigin: "",
expected: false,
},
{
name: "unparseable origin",
vendorName: "Letaido",
siteOrigin: "not a url",
expected: false,
},
}
for _, tt := range tests {
t.Run(
tt.name,
func(t *testing.T) {
t.Parallel()
assert.Equal(t, tt.expected, nameMatchesSiteDomain(tt.vendorName, tt.siteOrigin))
},
)
}
}
func TestNameIsCookieDatabaseAggregator(t *testing.T) {
t.Parallel()
tests := []struct {
name string
vendor string
expected bool
}{
{name: "cookifi is denied", vendor: "Cookifi", expected: true},
{name: "cookiepedia is denied", vendor: "cookiepedia", expected: true},
{name: "cookie database is denied", vendor: "Cookie Database", expected: true},
{name: "cookieserve is denied", vendor: "CookieServe", expected: true},
{name: "spacing and casing insensitive", vendor: " COOK IFI ", expected: true},
{name: "punctuation insensitive", vendor: "Cookie_Database", expected: true},
{name: "cookiedatabase domain form is denied", vendor: "cookiedatabase.org", expected: true},
{name: "cookifi domain form is denied", vendor: "cookifi.com", expected: true},
{name: "cookiepedia url form is denied", vendor: "https://www.cookiepedia.co.uk/list", expected: true},
{name: "cookieserve subdomain form is denied", vendor: "scan.cookieserve.com", expected: true},
{name: "onetrust is allowed", vendor: "OneTrust", expected: false},
{name: "cookiebot is allowed", vendor: "Cookiebot", expected: false},
{name: "cookiebot domain form is allowed", vendor: "cookiebot.com", expected: false},
{name: "cookieyes is allowed", vendor: "CookieYes", expected: false},
{name: "cookie-script is allowed", vendor: "Cookie-Script", expected: false},
{name: "unrelated vendor is allowed", vendor: "Google Analytics", expected: false},
{name: "empty name", vendor: "", expected: false},
}
for _, tt := range tests {
t.Run(
tt.name,
func(t *testing.T) {
t.Parallel()
assert.Equal(t, tt.expected, nameIsCookieDatabaseAggregator(tt.vendor))
},
)
}
}
func TestEvidenceSupportsAttribution(t *testing.T) {
t.Parallel()
tests := []struct {
name string
evidence string
expected bool
}{
{name: "database match supports", evidence: evidenceSourceDatabaseMatch, expected: true},
{name: "naming convention supports", evidence: evidenceSourceNamingConvention, expected: true},
{name: "web search supports", evidence: evidenceSourceWebSearch, expected: true},
{name: "browser page supports", evidence: evidenceSourceBrowserPage, expected: true},
{name: "none does not support", evidence: evidenceSourceNone, expected: false},
{name: "empty does not support", evidence: "", expected: false},
{name: "unknown value does not support", evidence: "vibes", expected: false},
}
for _, tt := range tests {
t.Run(
tt.name,
func(t *testing.T) {
t.Parallel()
assert.Equal(t, tt.expected, evidenceSupportsAttribution(tt.evidence))
},
)
}
}
func TestInterpretCatalogRow(t *testing.T) {
t.Parallel()
vendorID := gid.New(gid.NilTenant, coredata.CommonThirdPartyEntityType)
t.Run(
"first party verdict is terminal",
func(t *testing.T) {
t.Parallel()
adopt, untrusted, firstParty := interpretCatalogRow(coredata.CommonTrackerPattern{
CommonThirdPartyID: &vendorID,
Confidence: 1,
Attribution: coredata.CommonTrackerPatternAttributionFirstParty,
})
assert.Nil(t, adopt)
assert.Nil(t, untrusted)
assert.True(t, firstParty)
},
)
t.Run(
"trusted vendor is adopted",
func(t *testing.T) {
t.Parallel()
adopt, untrusted, firstParty := interpretCatalogRow(coredata.CommonTrackerPattern{
CommonThirdPartyID: &vendorID,
Confidence: trustedAttributionConfidence,
Attribution: coredata.CommonTrackerPatternAttributionThirdParty,
})
require.NotNil(t, adopt)
assert.Equal(t, vendorID, *adopt)
assert.Nil(t, untrusted)
assert.False(t, firstParty)
},
)
t.Run(
"low-confidence vendor is untrusted, not adopted",
func(t *testing.T) {
t.Parallel()
adopt, untrusted, firstParty := interpretCatalogRow(coredata.CommonTrackerPattern{
CommonThirdPartyID: &vendorID,
Confidence: agentSourceConfidence,
Attribution: coredata.CommonTrackerPatternAttributionThirdParty,
})
assert.Nil(t, adopt)
require.NotNil(t, untrusted)
assert.Equal(t, vendorID, *untrusted)
assert.False(t, firstParty)
},
)
t.Run(
"unlinked row yields nothing",
func(t *testing.T) {
t.Parallel()
adopt, untrusted, firstParty := interpretCatalogRow(coredata.CommonTrackerPattern{
Confidence: 0.5,
Attribution: coredata.CommonTrackerPatternAttributionUndetermined,
})
assert.Nil(t, adopt)
assert.Nil(t, untrusted)
assert.False(t, firstParty)
},
)
}
func TestIsPreExistingSource(t *testing.T) {
t.Parallel()
preExisting := coredata.CookieSourcePreExisting
script := coredata.CookieSourceScript
assert.True(t, isPreExistingSource(coredata.TrackerPattern{Source: &preExisting}))
assert.False(t, isPreExistingSource(coredata.TrackerPattern{Source: &script}))
assert.False(t, isPreExistingSource(coredata.TrackerPattern{Source: nil}))
}
func TestVendorAttributionRejected(t *testing.T) {
t.Parallel()
h := newMappingHandler(nil)
ctx := context.Background()
tp := coredata.TrackerPattern{Pattern: "_x", TrackerType: coredata.TrackerTypeCookie}
confident := func(mut func(*TrackerMappingAgentResult)) TrackerMappingAgentResult {
r := TrackerMappingAgentResult{
ThirdPartyName: "Acme Analytics",
Category: coredata.ThirdPartyCategoryAnalytics,
ThirdPartyConfidence: 0.9,
EvidenceSource: evidenceSourceNamingConvention,
}
if mut != nil {
mut(&r)
}
return r
}
t.Run(
"accepts a confident, evidence-backed attribution",
func(t *testing.T) {
t.Parallel()
assert.False(t, h.vendorAttributionRejected(ctx, tp, confident(nil), "https://example.com"))
},
)
t.Run(
"rejects below confidence threshold",
func(t *testing.T) {
t.Parallel()
r := confident(func(r *TrackerMappingAgentResult) { r.ThirdPartyConfidence = 0.3 })
assert.True(t, h.vendorAttributionRejected(ctx, tp, r, "https://example.com"))
},
)
t.Run(
"rejects empty name",
func(t *testing.T) {
t.Parallel()
r := confident(func(r *TrackerMappingAgentResult) { r.ThirdPartyName = "" })
assert.True(t, h.vendorAttributionRejected(ctx, tp, r, "https://example.com"))
},
)
t.Run(
"rejects when evidence source is none",
func(t *testing.T) {
t.Parallel()
r := confident(func(r *TrackerMappingAgentResult) { r.EvidenceSource = evidenceSourceNone })
assert.True(t, h.vendorAttributionRejected(ctx, tp, r, "https://example.com"))
},
)
t.Run(
"rejects when evidence source is empty",
func(t *testing.T) {
t.Parallel()
r := confident(func(r *TrackerMappingAgentResult) { r.EvidenceSource = "" })
assert.True(t, h.vendorAttributionRejected(ctx, tp, r, "https://example.com"))
},
)
t.Run(
"rejects when name matches scanned site",
func(t *testing.T) {
t.Parallel()
r := confident(func(r *TrackerMappingAgentResult) { r.ThirdPartyName = "Example" })
assert.True(t, h.vendorAttributionRejected(ctx, tp, r, "https://example.com"))
},
)
t.Run(
"rejects cookie-database aggregator",
func(t *testing.T) {
t.Parallel()
r := confident(func(r *TrackerMappingAgentResult) { r.ThirdPartyName = "Cookiepedia" })
assert.True(t, h.vendorAttributionRejected(ctx, tp, r, "https://example.com"))
},
)
}
func TestBuildAgentPrompt(t *testing.T) {
t.Parallel()
tp := coredata.TrackerPattern{
Pattern: "ethereum-https://letaido.com",
TrackerType: coredata.TrackerTypeLocalStorage,
MatchType: coredata.TrackerPatternMatchTypeExact,
}
t.Run(
"emits scanned_site when domain supplied",
func(t *testing.T) {
t.Parallel()
prompt := buildAgentPrompt(tp, nil, "letaido.com")
assert.Contains(t, prompt, "<scanned_site> letaido.com </scanned_site>")
},
)
t.Run(
"omits scanned_site when domain empty",
func(t *testing.T) {
t.Parallel()
prompt := buildAgentPrompt(tp, nil, "")
assert.NotContains(t, prompt, "<scanned_site>")
},
)
t.Run(
"emits both scanned_site and observed_domains",
func(t *testing.T) {
t.Parallel()
prompt := buildAgentPrompt(tp, []string{"doubleclick.net"}, "letaido.com")
assert.Contains(t, prompt, "<scanned_site> letaido.com </scanned_site>")
assert.Contains(t, prompt, "<observed_domains> doubleclick.net </observed_domains>")
assert.Less(t, strings.Index(prompt, "<scanned_site>"), strings.Index(prompt, "<observed_domains>"))
},
)
}