| // Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| import 'package:test/test.dart'; |
| import 'package:vm_service/vm_service.dart'; |
| |
| import 'common/service_test_common.dart'; |
| import 'common/test_helper.dart'; |
| |
| // Non tailable recursive function that should trigger a Stack Overflow. |
| num factorialGrowth([num n = 1]) { |
| return factorialGrowth(n + 1) * n; |
| } |
| |
| void nonTailableRecursion() { |
| factorialGrowth(); |
| } |
| |
| final tests = <IsolateTest>[ |
| hasStoppedAtExit, |
| (VmService service, IsolateRef isolateRef) async { |
| final isolate = await service.getIsolate(isolateRef.id!); |
| expect(isolate.error, isNotNull); |
| expect(isolate.error!.message!.contains('Stack Overflow'), true); |
| } |
| ]; |
| |
| void main([args = const <String>[]]) => runIsolateTests( |
| args, |
| tests, |
| 'get_isolate_after_stack_overflow_error_test.dart', |
| pauseOnExit: true, |
| testeeConcurrent: nonTailableRecursion, |
| ); |