Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Tabs menu position for some languages #27982

Merged
merged 2 commits into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ public abstract class BraveMainPreferencesBase extends BravePreferenceFragment
private static final String PREF_PAYMENT_METHODS = "autofill_payment_methods";
private static final String PREF_ADDRESSES = "autofill_addresses";
private static final String PREF_AUTOFILL_PRIVATE_WINDOW = "autofill_private_window";
private static final String PREF_TABS = "tabs";
private static final String PREF_MEDIA = "media";
private static final String PREF_APPEARANCE = "appearance";
private static final String PREF_NEW_TAB_PAGE = "background_images";
Expand Down Expand Up @@ -326,6 +327,7 @@ private void rearrangePreferenceOrders() {
int displaySectionOrder = generalOrder;
findPreference(PREF_DISPLAY_SECTION).setOrder(++displaySectionOrder);

findPreference(PREF_TABS).setOrder(++displaySectionOrder);
findPreference(PREF_MEDIA).setOrder(++displaySectionOrder);
findPreference(PREF_APPEARANCE).setOrder(++displaySectionOrder);
findPreference(PREF_NEW_TAB_PAGE).setOrder(++displaySectionOrder);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
/* Copyright (c) 2025 The Brave Authors. All rights reserved.
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at https://mozilla.org/MPL/2.0/. */

package org.chromium.chrome.browser.settings;

import static org.junit.Assert.assertTrue;

import android.os.Looper;

import androidx.annotation.Nullable;
import androidx.preference.Preference;
import androidx.test.filters.SmallTest;

import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;

import org.chromium.base.test.util.DoNotBatch;
import org.chromium.chrome.browser.tracing.settings.DeveloperSettings;
import org.chromium.chrome.test.ChromeJUnit4ClassRunner;

/** Test for {@link MainSettings}. Main purpose is to have a quick confidence check on the xml. */
@RunWith(ChromeJUnit4ClassRunner.class)
@DoNotBatch(reason = "Tests cannot run batched because they launch a Settings activity.")
public class BraveMainSettingsFragmentTest {
private final SettingsActivityTestRule<MainSettings> mSettingsActivityTestRule =
new SettingsActivityTestRule<>(MainSettings.class);
private MainSettings mMainSettings;

@Before
public void setup() {
Looper.prepare();
DeveloperSettings.setIsEnabledForTests(true);
}

@After
public void tearDown() {}

private static final String[] sSortedPrefKeys = {
"features_section",
"brave_shields_and_privacy",
"brave_news_v2",
"brave_wallet",
"brave_vpn",
"brave_leo",
"general_section",
"brave_search_engines",
"homepage",
"passwords",
"brave_sync_layout",
"brave_stats",
"content_settings",
"brave_downloads",
"closing_all_tabs_closes_brave",
"use_custom_tabs",
"display_section",
"tabs",
"media",
"appearance",
"background_images",
"accessibility",
"brave_languages",
// Somehow this is the key for Autofill section
"online_checkout_section",
"autofill_payment_methods",
"autofill_addresses",
"autofill_private_window",
"support_section",
"rate_brave",
"about_section",
"developer",
"about_chrome"
};

// This test is intended to check the issue where prefs order was wrong
// when app language was switched to some other than default English,
// like French. The test infrastructure does not support switching app
// interface language. So the test may help to catch order violation
// with English.
@Test
@SmallTest
public void testMainSettingsPrefsOrder() {
startSettings();

@Nullable Preference prevPref = null;
for (int i = 0; i < sSortedPrefKeys.length; ++i) {
Preference pref = mMainSettings.findPreference(sSortedPrefKeys[i]);

if (prevPref == null) { // Skip first pref.
prevPref = pref;
continue;
}
assertTrue(
prevPref.getTitle() + " should precede " + pref.getTitle(),
pref.getOrder() > prevPref.getOrder());
}
}

private void startSettings() {
mSettingsActivityTestRule.startSettingsActivity();
mMainSettings = mSettingsActivityTestRule.getFragment();
Assert.assertNotNull("SettingsActivity failed to launch.", mMainSettings);
}
}
1 change: 1 addition & 0 deletions test/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -1271,6 +1271,7 @@ if (is_android) {
"//brave/android/javatests/org/chromium/chrome/browser/privacy/settings/BravePrivacySettingsTest.java",
"//brave/android/javatests/org/chromium/chrome/browser/safe_browsing/settings/BraveSafeBrowsingSettingsFragmentTest.java",
"//brave/android/javatests/org/chromium/chrome/browser/safety_check/BraveSafetyCheckSettingsFragmentTest.java",
"//brave/android/javatests/org/chromium/chrome/browser/settings/BraveMainSettingsFragmentTest.java",
"//brave/android/javatests/org/chromium/chrome/browser/sync/BraveManageSyncSettingsTest.java",
]

Expand Down
Loading