|
| 1 | +import 'dart:io'; |
| 2 | + |
| 3 | +import 'package:http/http.dart'; |
| 4 | +import 'package:sentry/sentry.dart'; |
| 5 | + |
| 6 | +const _exampleDsn = |
| 7 | + 'https://[email protected]/5428562'; |
| 8 | + |
| 9 | +const _org = 'sentry-sdks'; |
| 10 | +const _projectSlug = 'sentry-flutter'; |
| 11 | + |
| 12 | +final _token = Platform.environment['SENTRY_AUTH_TOKEN'] ?? ''; |
| 13 | + |
| 14 | +void main(List<String> arguments) async { |
| 15 | + print('Starting'); |
| 16 | + if (_token.trim().isEmpty) { |
| 17 | + print('AUTH TOKEN is not set'); |
| 18 | + exit(1); |
| 19 | + } |
| 20 | + await Sentry.init((options) { |
| 21 | + options.dsn = _exampleDsn; |
| 22 | + }); |
| 23 | + |
| 24 | + var id = SentryId.empty(); |
| 25 | + try { |
| 26 | + throw Exception('E2E Test Message'); |
| 27 | + } catch (e, stacktrace) { |
| 28 | + id = await Sentry.captureException(e, stackTrace: stacktrace); |
| 29 | + } |
| 30 | + |
| 31 | + print('Captured exception'); |
| 32 | + final url = _eventUri(id); |
| 33 | + final found = await _waitForEventToShowUp(url); |
| 34 | + if (found) { |
| 35 | + print('success'); |
| 36 | + exit(0); |
| 37 | + } else { |
| 38 | + print('failed'); |
| 39 | + exit(1); |
| 40 | + } |
| 41 | +} |
| 42 | + |
| 43 | +Future<bool> _waitForEventToShowUp(Uri url) async { |
| 44 | + final client = Client(); |
| 45 | + |
| 46 | + for (var i = 0; i < 10; i++) { |
| 47 | + print('Try no. $i: Search for event on sentry.io'); |
| 48 | + final response = await client.get( |
| 49 | + url, |
| 50 | + headers: <String, String>{'Authorization': 'Bearer $_token'}, |
| 51 | + ); |
| 52 | + print('${response.statusCode}: ${response.body}'); |
| 53 | + if (response.statusCode == 200) { |
| 54 | + return true; |
| 55 | + } |
| 56 | + await Future.delayed(Duration(seconds: 15)); |
| 57 | + } |
| 58 | + return false; |
| 59 | +} |
| 60 | + |
| 61 | +Uri _eventUri(SentryId id) { |
| 62 | + // https://docs.sentry.io/api/events/retrieve-an-event-for-a-project/ |
| 63 | + return Uri.parse( |
| 64 | + 'https://sentry.io/api/0/projects/$_org/$_projectSlug/events/$id/', |
| 65 | + ); |
| 66 | +} |
0 commit comments