mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2025-12-23 22:18:36 -05:00
* (lint) MOB-1063 enforce trailing commas * autofix trailing commas * manually fix newly introduced maxlen violations * add trailing comma convention to i18n build
106 lines
3.7 KiB
JavaScript
106 lines
3.7 KiB
JavaScript
import { fireEvent, screen } from "@testing-library/react-native";
|
|
import Settings from "components/Settings/Settings";
|
|
import { getInatLocaleFromSystemLocale } from "i18n/initI18next";
|
|
import i18next from "i18next";
|
|
import inatjs from "inaturalistjs";
|
|
import React from "react";
|
|
import factory, { makeResponse } from "tests/factory";
|
|
import { renderAppWithComponent } from "tests/helpers/render";
|
|
import setupUniqueRealm from "tests/helpers/uniqueRealm";
|
|
import { signIn, signOut } from "tests/helpers/user";
|
|
|
|
const mockUserWithRussianWebLocale = factory( "RemoteUser", {
|
|
locale: "ru",
|
|
} );
|
|
|
|
// UNIQUE REALM SETUP
|
|
const mockRealmIdentifier = __filename;
|
|
const { mockRealmModelsIndex, uniqueRealmBeforeAll, uniqueRealmAfterAll } = setupUniqueRealm(
|
|
mockRealmIdentifier,
|
|
);
|
|
jest.mock( "realmModels/index", ( ) => mockRealmModelsIndex );
|
|
jest.mock( "providers/contexts", ( ) => {
|
|
const originalModule = jest.requireActual( "providers/contexts" );
|
|
return {
|
|
__esModule: true,
|
|
...originalModule,
|
|
RealmContext: {
|
|
...originalModule.RealmContext,
|
|
useRealm: ( ) => global.mockRealms[mockRealmIdentifier],
|
|
useQuery: ( ) => [],
|
|
},
|
|
};
|
|
} );
|
|
beforeAll( uniqueRealmBeforeAll );
|
|
afterAll( uniqueRealmAfterAll );
|
|
// /UNIQUE REALM SETUP
|
|
|
|
describe( "LanguageSettings", ( ) => {
|
|
it( "uses locale preference of the local device", ( ) => {
|
|
renderAppWithComponent( <Settings /> );
|
|
const systemLocale = getInatLocaleFromSystemLocale( );
|
|
expect( systemLocale ).toEqual( "en" );
|
|
expect( i18next.language ).toEqual( systemLocale );
|
|
} );
|
|
|
|
describe( "when signed in as Russian language user", ( ) => {
|
|
beforeEach( async ( ) => {
|
|
await signIn( mockUserWithRussianWebLocale, { realm: global.mockRealms[__filename] } );
|
|
jest.useFakeTimers( );
|
|
inatjs.users.me.mockResolvedValue( makeResponse( [mockUserWithRussianWebLocale] ) );
|
|
inatjs.translations.locales.mockResolvedValue( makeResponse( [{
|
|
language_in_locale: "Русский",
|
|
locale: "ru",
|
|
}, {
|
|
language_in_locale: "Svenska",
|
|
locale: "sv",
|
|
}] ) );
|
|
} );
|
|
|
|
afterEach( async ( ) => {
|
|
await signOut( { realm: global.mockRealms[__filename] } );
|
|
} );
|
|
|
|
it( "uses locale preference from server", async ( ) => {
|
|
renderAppWithComponent( <Settings /> );
|
|
const sciNameText = await screen.findByText(
|
|
i18next.t( "Scientific-Name", { lang: "ru" } ),
|
|
);
|
|
expect( sciNameText ).toBeVisible( );
|
|
} );
|
|
|
|
it( "allows change to Swedish and requests remote locale change", async ( ) => {
|
|
renderAppWithComponent( <Settings /> );
|
|
const changeLocaleButton = await screen.findByText(
|
|
i18next.t( "CHANGE-APP-LANGUAGE", { lang: "ru" } ),
|
|
);
|
|
fireEvent.press( changeLocaleButton );
|
|
const picker = await screen.findByTestId( "ReactNativePicker" );
|
|
fireEvent( picker, "onValueChange", "sv" );
|
|
expect( picker.props.selectedIndex ).toStrictEqual( 1 );
|
|
const confirmText = await screen.findByText(
|
|
i18next.t( "CONFIRM", { lang: "ru" } ),
|
|
);
|
|
fireEvent.press( confirmText );
|
|
const sciNameText = await screen.findByText(
|
|
i18next.t( "Scientific-Name", { lang: "sv" } ),
|
|
);
|
|
expect( sciNameText ).toBeVisible( );
|
|
expect( inatjs.users.update ).toHaveBeenCalledWith( {
|
|
id: mockUserWithRussianWebLocale.id,
|
|
user: {
|
|
locale: "sv",
|
|
},
|
|
}, {
|
|
api_token: "test-json-web-token",
|
|
} );
|
|
} );
|
|
|
|
it( "reverts to system locale on sign out", async ( ) => {
|
|
renderAppWithComponent( <Settings /> );
|
|
await signOut( { realm: global.mockRealms[__filename] } );
|
|
expect( i18next.language ).toEqual( "en" );
|
|
} );
|
|
} );
|
|
} );
|