1
0
Fork 0
firefox/toolkit/profile/test/xpcshell/test_update_selected_dedicated.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

80 lines
2.1 KiB
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
/*
* Tests that an old-style default profile previously used by this build gets
* updated to a dedicated profile for this build.
*/
add_task(async () => {
let defaultProfile = makeRandomProfileDir("default");
writeCompatibilityIni(defaultProfile);
writeProfilesIni({
profiles: [
{
name: PROFILE_DEFAULT,
path: defaultProfile.leafName,
default: true,
},
],
});
let { profile: selectedProfile, didCreate } = selectStartupProfile();
checkStartupReason("firstrun-claimed-default");
let { databaseVersion, profileCount } = getTelemetryScalars();
Assert.equal(
databaseVersion,
"1",
"Old database file was present at startup."
);
Assert.equal(profileCount, 1, "Should be one profile.");
let hash = xreDirProvider.getInstallHash();
let profileData = readProfilesIni();
Assert.ok(
profileData.options.startWithLastProfile,
"Should be set to start with the last profile."
);
Assert.equal(
profileData.profiles.length,
1,
"Should have the right number of profiles."
);
let profile = profileData.profiles[0];
Assert.equal(profile.name, PROFILE_DEFAULT, "Should have the right name.");
Assert.equal(
profile.path,
defaultProfile.leafName,
"Should be the original default profile."
);
Assert.ok(profile.default, "Should be marked as the old-style default.");
Assert.equal(
Object.keys(profileData.installs).length,
1,
"Should be only one known install."
);
Assert.equal(
profileData.installs[hash].default,
defaultProfile.leafName,
"Should have marked the original default profile as the default for this install."
);
Assert.ok(
!profileData.installs[hash].locked,
"Should not have locked as we're not the default app."
);
checkProfileService(profileData);
Assert.ok(!didCreate, "Should not have created a new profile.");
Assert.ok(
selectedProfile.rootDir.equals(defaultProfile),
"Should be using the right directory."
);
Assert.equal(selectedProfile.name, PROFILE_DEFAULT);
});