mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-01-17 10:18:50 -05:00
Main fix was updating inaturalistjs to get a recent bug fix. Also submits a JSON body instead of a pseudo-formdata-style body. Also: * Only try to process queued items that have not failed in the last minute * Delete queued items after failing 3 times * Fix index.js error handler bug that was squelching errors that weren't getting caught by the ErrorBoundary
98 lines
3.5 KiB
JavaScript
98 lines
3.5 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", ( ) => {
|
|
test( "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", ( ) => {
|
|
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] } );
|
|
} );
|
|
|
|
test( "uses locale preference from server", async ( ) => {
|
|
renderAppWithComponent( <Settings /> );
|
|
const sciNameText = await screen.findByText( /Научное название/ );
|
|
expect( sciNameText ).toBeVisible( );
|
|
} );
|
|
|
|
test( "changes locales and updates server with new locale", async ( ) => {
|
|
renderAppWithComponent( <Settings /> );
|
|
const changeLocaleButton = await screen.findByText( /CHANGE APP LANGUAGE/ );
|
|
fireEvent.press( changeLocaleButton );
|
|
const picker = await screen.findByTestId( "ReactNativePicker" );
|
|
fireEvent( picker, "onValueChange", "sv" );
|
|
expect( picker.props.selectedIndex ).toStrictEqual( 1 );
|
|
const confirmText = await screen.findByText( /CONFIRM/ );
|
|
fireEvent.press( confirmText );
|
|
const sciNameText = await screen.findByText( "Vetenskapligt namn" );
|
|
expect( sciNameText ).toBeVisible( );
|
|
expect( inatjs.users.update ).toHaveBeenCalledWith( {
|
|
id: mockUserWithRussianWebLocale.id,
|
|
user: {
|
|
locale: "sv"
|
|
}
|
|
}, {
|
|
api_token: "test-json-web-token"
|
|
} );
|
|
} );
|
|
|
|
test( "revert to system locale on sign out", async ( ) => {
|
|
renderAppWithComponent( <Settings /> );
|
|
await signOut( { realm: global.mockRealms[__filename] } );
|
|
expect( i18next.language ).toEqual( "en" );
|
|
} );
|
|
} );
|
|
} );
|