Skip to content

Commit 0ca7e45

Browse files
authored
E2E Test (#527)
* wip * github action * Delete files * Update .github/workflows/e2e_dart.yml * Use correct org and project slug * fix path in action * Print more details * add auth key * Better error messages * wip * change env reading * return success status code * remove template comments * use final * pr feedback * check lints and style in e2e test
1 parent ba729f4 commit 0ca7e45

File tree

5 files changed

+102
-2
lines changed

5 files changed

+102
-2
lines changed

.github/workflows/e2e_dart.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
build:
99
name: E2E
1010
runs-on: 'ubuntu-latest'
11+
defaults:
12+
run:
13+
working-directory: ./e2e_test
1114
strategy:
1215
fail-fast: false
1316
matrix:
@@ -20,6 +23,9 @@ jobs:
2023
with:
2124
sdk: ${{ matrix.sdk }}
2225
- uses: actions/checkout@v2
23-
- name: exit successfully
26+
- name: Test
2427
run: |
25-
echo 'all good'
28+
dart pub get
29+
dart analyze --fatal-infos
30+
dart format --set-exit-if-changed ./
31+
dart run

e2e_test/.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Files and directories created by pub.
2+
.dart_tool/
3+
.packages
4+
5+
# Conventional directory for build output.
6+
build/

e2e_test/analysis_options.yaml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Defines a default set of lint rules enforced for projects at Google. For
2+
# details and rationale, see
3+
# https://github.com/dart-lang/pedantic#enabled-lints.
4+
5+
include: package:lints/recommended.yaml

e2e_test/bin/e2e_test.dart

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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+
}

e2e_test/pubspec.yaml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: e2e_test
2+
description: Simple program to test if an error is transferred to Sentry.io
3+
version: 1.0.0
4+
5+
publish_to: none
6+
7+
environment:
8+
sdk: '>=2.12.0 <3.0.0'
9+
10+
dependencies:
11+
sentry:
12+
path:
13+
./../dart
14+
http: ^0.13.3
15+
16+
dev_dependencies:
17+
lints: ^1.0.1

0 commit comments

Comments
 (0)