776822afcd
Covers the recently fixed bugs (batch continuation on unknown convos, accept status propagation to 'all'-status caches, rev guard against stale writes) plus core per-log-type cache behaviors. Fixture builders are shared for other chat test suites. Stubs the bottom-sheet native module in jest setup: it reads Platform.Version at import time, which jest-expo leaves undefined, crashing any test that imports the chat/session chain. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
126 lines
3.4 KiB
JavaScript
126 lines
3.4 KiB
JavaScript
/* global jest */
|
|
import 'react-native-gesture-handler/jestSetup'
|
|
|
|
import {configure} from '@testing-library/react-native'
|
|
|
|
configure({asyncUtilTimeout: 20000})
|
|
|
|
jest.mock('@react-native-async-storage/async-storage', () =>
|
|
require('@react-native-async-storage/async-storage/jest/async-storage-mock'),
|
|
)
|
|
jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter', () => {
|
|
// eslint-disable-next-line import-x/no-nodejs-modules
|
|
const {EventEmitter} = require('events')
|
|
return {
|
|
__esModule: true,
|
|
default: EventEmitter,
|
|
}
|
|
})
|
|
|
|
jest.mock('react-native-safe-area-context', () => {
|
|
const inset = {top: 0, right: 0, bottom: 0, left: 0}
|
|
return {
|
|
SafeAreaProvider: jest.fn().mockImplementation(({children}) => children),
|
|
SafeAreaConsumer: jest
|
|
.fn()
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
|
.mockImplementation(({children}) => children(inset)),
|
|
useSafeAreaInsets: jest.fn().mockImplementation(() => inset),
|
|
}
|
|
})
|
|
|
|
jest.mock('expo-file-system/legacy', () => ({
|
|
getInfoAsync: jest.fn().mockResolvedValue({exists: true, size: 100}),
|
|
deleteAsync: jest.fn(),
|
|
moveAsync: jest.fn().mockResolvedValue(undefined),
|
|
createDownloadResumable: jest.fn(),
|
|
}))
|
|
|
|
jest.mock('expo-image-manipulator', () => ({
|
|
manipulateAsync: jest.fn().mockResolvedValue({
|
|
uri: 'file://resized-image',
|
|
}),
|
|
SaveFormat: {
|
|
JPEG: 'jpeg',
|
|
WEBP: 'webp',
|
|
},
|
|
}))
|
|
|
|
jest.mock('expo-camera', () => ({
|
|
Camera: {
|
|
useCameraPermissions: jest.fn(() => [true]),
|
|
},
|
|
}))
|
|
|
|
jest.mock('expo-media-library', () => ({
|
|
__esModule: true, // this property makes it work
|
|
default: jest.fn(),
|
|
usePermissions: jest.fn(() => [true]),
|
|
}))
|
|
|
|
jest.mock('@bsky.app/expo-guess-language', () => ({
|
|
guessLanguageSync: jest
|
|
.fn()
|
|
.mockReturnValue([{language: 'en', confidence: 1}]),
|
|
guessLanguageAsync: jest
|
|
.fn()
|
|
.mockResolvedValue([{language: 'en', confidence: 1}]),
|
|
}))
|
|
|
|
jest.mock('sentry-expo', () => ({
|
|
init: () => jest.fn(),
|
|
Native: {
|
|
ReactNativeTracing: jest.fn().mockImplementation(() => ({
|
|
start: jest.fn(),
|
|
stop: jest.fn(),
|
|
})),
|
|
ReactNavigationInstrumentation: jest.fn(),
|
|
},
|
|
}))
|
|
|
|
jest.mock('crypto', () => ({}))
|
|
|
|
jest.mock('expo-application', () => ({
|
|
nativeApplicationVersion: '1.0.0',
|
|
nativeBuildVersion: '1',
|
|
}))
|
|
|
|
jest.mock('expo-modules-core', () => ({
|
|
requireNativeModule: jest.fn().mockImplementation(moduleName => {
|
|
if (moduleName === 'ExpoPlatformInfo') {
|
|
return {
|
|
getIsReducedMotionEnabled: () => false,
|
|
}
|
|
}
|
|
if (moduleName === 'BottomSheet') {
|
|
return {
|
|
dismissAll: () => {},
|
|
}
|
|
}
|
|
}),
|
|
requireNativeViewManager: jest.fn().mockImplementation(_ => {
|
|
return () => null
|
|
}),
|
|
createPermissionHook: () => () => [true],
|
|
}))
|
|
|
|
jest.mock('expo-localization', () => ({
|
|
getLocales: () => [],
|
|
}))
|
|
|
|
// The bottom-sheet native component reads Platform.Version at import time,
|
|
// which the jest-expo preset leaves undefined, crashing any test that pulls in
|
|
// the chat/session import chain. Stub the native module so it's never
|
|
// evaluated under jest.
|
|
jest.mock('../modules/bottom-sheet', () => ({
|
|
__esModule: true,
|
|
BottomSheet: () => null,
|
|
BottomSheetNativeComponent: class {},
|
|
BottomSheetOutlet: () => null,
|
|
BottomSheetPortalProvider: jest
|
|
.fn()
|
|
.mockImplementation(({children}) => children),
|
|
BottomSheetProvider: jest.fn().mockImplementation(({children}) => children),
|
|
BottomSheetSnapPoint: {Hidden: 0, Partial: 1, Full: 2},
|
|
}))
|