-
Notifications
You must be signed in to change notification settings - Fork 4k
fix: Block raw HEIC upload when conversion fails #96024
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b27cb74
fix: Block raw HEIC upload when conversion fails
annaweber830 fbe374d
Merge branch 'main' of https://github.com/annaweber830/App into fix/9…
annaweber830 dc4e477
fix: commment add
annaweber830 4e1d89b
Merge branch 'main' of https://github.com/annaweber830/App into fix/9…
annaweber830 7aafacf
fix: error message
annaweber830 8463ab6
fix: remove resize part
annaweber830 b642e77
Merge branch 'main' of https://github.com/annaweber830/App into fix/9…
annaweber830 a20ae24
fix: translation
annaweber830 4a9108e
Merge branch 'main' of https://github.com/annaweber830/App into fix/9…
annaweber830 94d679a
fix: remove retry logic
annaweber830 b21437c
fix: el.ts
annaweber830 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,75 @@ | ||
| import convertHeicImage from '@libs/fileDownload/heicConverter/index.native'; | ||
|
|
||
| const mockSaveAsync = jest.fn(); | ||
| const mockRenderAsync = jest.fn(); | ||
|
|
||
| jest.mock('expo-image-manipulator', () => ({ | ||
| ImageManipulator: { | ||
| manipulate: () => ({ | ||
| renderAsync: () => mockRenderAsync() as unknown, | ||
| }), | ||
| }, | ||
| SaveFormat: {JPEG: 'jpeg'}, | ||
| })); | ||
|
|
||
| jest.mock('@libs/Log', () => ({ | ||
| info: jest.fn(), | ||
| warn: jest.fn(), | ||
| })); | ||
|
|
||
| const heicFile = {uri: 'file:///photo.heic', name: 'photo.heic', type: 'image/heic', size: 1024}; | ||
|
|
||
| const mockRenderSuccess = () => mockRenderAsync.mockResolvedValueOnce({saveAsync: () => mockSaveAsync() as unknown}); | ||
|
|
||
| describe('convertHeicImage (native)', () => { | ||
| beforeEach(() => { | ||
| jest.clearAllMocks(); | ||
| jest.useFakeTimers(); | ||
| mockSaveAsync.mockResolvedValue({uri: 'file:///photo.jpg', width: 100, height: 200}); | ||
| }); | ||
|
|
||
| afterEach(() => { | ||
| jest.useRealTimers(); | ||
| }); | ||
|
|
||
| it('converts a HEIC file to JPEG and reports success', async () => { | ||
| mockRenderSuccess(); | ||
| const onSuccess = jest.fn(); | ||
| const onError = jest.fn(); | ||
| const onFinish = jest.fn(); | ||
|
|
||
| convertHeicImage(heicFile, {onSuccess, onError, onFinish}); | ||
| await jest.runAllTimersAsync(); | ||
|
|
||
| expect(onError).not.toHaveBeenCalled(); | ||
| expect(onFinish).toHaveBeenCalledTimes(1); | ||
| expect(onSuccess).toHaveBeenCalledWith(expect.objectContaining({uri: 'file:///photo.jpg', name: 'photo.jpg', type: 'image/jpeg'})); | ||
| }); | ||
|
|
||
| it('reports an error on conversion failure, and never falls back to the original HEIC', async () => { | ||
| mockRenderAsync.mockRejectedValueOnce(new Error('Image context has been lost')); | ||
| const onSuccess = jest.fn(); | ||
| const onError = jest.fn(); | ||
| const onFinish = jest.fn(); | ||
|
|
||
| convertHeicImage(heicFile, {onSuccess, onError, onFinish}); | ||
| await jest.runAllTimersAsync(); | ||
|
|
||
| expect(mockRenderAsync).toHaveBeenCalledTimes(1); | ||
| expect(onError).toHaveBeenCalledTimes(1); | ||
| expect(onFinish).toHaveBeenCalledTimes(1); | ||
| // The raw HEIC must never be surfaced as a success: the server rejects image/heic. | ||
| expect(onSuccess).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('passes non-HEIC files straight through without conversion', async () => { | ||
| const onSuccess = jest.fn(); | ||
| const jpegFile = {uri: 'file:///photo.jpg', name: 'photo.jpg', type: 'image/jpeg', size: 1024}; | ||
|
|
||
| convertHeicImage(jpegFile, {onSuccess}); | ||
| await jest.runAllTimersAsync(); | ||
|
|
||
| expect(mockRenderAsync).not.toHaveBeenCalled(); | ||
| expect(onSuccess).toHaveBeenCalledWith(jpegFile); | ||
| }); | ||
| }); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.