mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
b3bbc0dadf
* feat: add CountEntries to skip decryption for list --detail (#549) * test: add CountEntries and countCategory tests at browser level * fix: address review feedback on CountRows and countLocalStorage * test: add CountRows unit tests
84 lines
1.9 KiB
Go
84 lines
1.9 KiB
Go
package firefox
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func setupMozExtensionJSON(t *testing.T) string {
|
|
t.Helper()
|
|
return createTestJSON(t, "extensions.json", `{
|
|
"addons": [
|
|
{
|
|
"id": "ublock@gorhill.org",
|
|
"location": "app-profile",
|
|
"version": "1.52.0",
|
|
"active": true,
|
|
"defaultLocale": {
|
|
"name": "uBlock Origin",
|
|
"description": "An efficient blocker"
|
|
}
|
|
},
|
|
{
|
|
"id": "system@mozilla.org",
|
|
"location": "app-system-defaults",
|
|
"version": "1.0",
|
|
"defaultLocale": {"name": "System Addon"}
|
|
},
|
|
{
|
|
"id": "bitwarden@bitwarden.com",
|
|
"location": "app-profile",
|
|
"version": "2024.1.0",
|
|
"active": true,
|
|
"defaultLocale": {
|
|
"name": "Bitwarden",
|
|
"description": "Password manager"
|
|
}
|
|
}
|
|
]
|
|
}`)
|
|
}
|
|
|
|
func TestExtractExtensions(t *testing.T) {
|
|
path := setupMozExtensionJSON(t)
|
|
|
|
got, err := extractExtensions(path)
|
|
require.NoError(t, err)
|
|
require.Len(t, got, 2) // system addon filtered out
|
|
|
|
ids := map[string]bool{}
|
|
for _, ext := range got {
|
|
ids[ext.ID] = true
|
|
assert.NotEmpty(t, ext.Name)
|
|
assert.NotEmpty(t, ext.Version)
|
|
}
|
|
assert.True(t, ids["ublock@gorhill.org"])
|
|
assert.True(t, ids["bitwarden@bitwarden.com"])
|
|
assert.False(t, ids["system@mozilla.org"])
|
|
}
|
|
|
|
func TestCountExtensions(t *testing.T) {
|
|
path := setupMozExtensionJSON(t)
|
|
|
|
count, err := countExtensions(path)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, 2, count) // system addon filtered out
|
|
}
|
|
|
|
func TestCountExtensions_Empty(t *testing.T) {
|
|
path := createTestJSON(t, "extensions.json", `{"addons": []}`)
|
|
|
|
count, err := countExtensions(path)
|
|
require.NoError(t, err)
|
|
assert.Equal(t, 0, count)
|
|
}
|
|
|
|
func TestExtractExtensions_EmptyAddons(t *testing.T) {
|
|
path := createTestJSON(t, "extensions.json", `{"addons": []}`)
|
|
got, err := extractExtensions(path)
|
|
require.NoError(t, err)
|
|
assert.Empty(t, got)
|
|
}
|