Skip to content
This repository was archived by the owner on Aug 14, 2023. It is now read-only.

fix: share link extension #428

Merged
merged 3 commits into from
Jan 23, 2023
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
2 changes: 1 addition & 1 deletion functions/src/share/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ describe('Share API', () => {

test('Invalid file extension returns 404 and html', async () => {
const req = Object.assign({}, baseReq, {
path: 'wrong.mp3',
path: 'wrong.gif',
});
const res = await getShareResponse(req);
expect(res.status).toEqual(404);
Expand Down
2 changes: 1 addition & 1 deletion functions/src/share/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import portalAnimationControllerTmpl from './templates/portal-animation-controll
import gaTmpl from './templates/ga';


const VALID_VIDEO_EXT = [ '.mp4', '.gif' ];
const VALID_VIDEO_EXT = [ '.mp4' ];

const BaseHTMLContext: Record<string, string | Record<string, string>> = {
appUrl: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class ConvertRepository {
json,
_processedFrames.first,
);
final shareUrl = _getShareUrl(videoResponse.gifUrl);
final shareUrl = _getShareUrl(videoResponse.videoUrl);
final shareText = Uri.encodeComponent(
'A new reality awaits in the #FlutterHolobooth. '
'See you at #FlutterForward!',
Expand Down
32 changes: 19 additions & 13 deletions packages/convert_repository/test/src/convert_repository_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,19 +93,25 @@ void main() {
expect(repository.generateVideo(), throwsException);
});

test('return ConvertResponse with video, gif and first frame', () async {
when(() => streamedResponse.statusCode).thenReturn(200);
when(() => streamedResponse.stream).thenAnswer(
(_) => ByteStream.fromBytes(
'{"video_url": "video", "gif_url": "gif"}'.codeUnits,
),
);
final response = await convertRepository.generateVideo();

expect(response.videoUrl, equals('video'));
expect(response.gifUrl, equals('gif'));
expect(response.firstFrame, Uint8List(1));
});
test(
'return ConvertResponse with video, gif and first frame, and share '
'urls',
() async {
when(() => streamedResponse.statusCode).thenReturn(200);
when(() => streamedResponse.stream).thenAnswer(
(_) => ByteStream.fromBytes(
'{"video_url": "video", "gif_url": "gif"}'.codeUnits,
),
);
final response = await convertRepository.generateVideo();

expect(response.videoUrl, equals('video'));
expect(response.gifUrl, equals('gif'));
expect(response.firstFrame, Uint8List(1));
expect(response.twitterShareUrl, contains(response.videoUrl));
expect(response.facebookShareUrl, contains(response.videoUrl));
},
);

test('throws ConvertException on status code different than 200',
() async {
Expand Down