123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- import random
- from glitchtip.test_utils.test_data import ENVIRONMENTS, RELEASES
- def brower_tag_generator():
- return random.choice(BROWSER_TAGS)
- SDKS = [
- {
- "version": "1.5.1",
- "name": "sentry.python",
- "packages": [{"version": "1.5.1", "name": "pypi:sentry-sdk"}],
- "integrations": [],
- },
- {
- "name": "sentry.javascript.react",
- "version": "7.36.0",
- "packages": [{"name": "npm:@sentry/react", "version": "7.36.0"}],
- "integrations": [
- "InboundFilters",
- ],
- },
- {"name": "sentry.php.laravel", "version": "2.9.0"},
- ]
- EXCEPTIONS = [
- {
- "values": [
- {
- "type": "Error",
- "value": "A Generic Error 9371d7",
- "stacktrace": {
- "frames": [
- {
- "colno": 27,
- "filename": "http://localhost:4201/polyfills.js",
- "function": "globalZoneAwareCallback",
- "in_app": True,
- "lineno": 4864,
- },
- ]
- },
- }
- ]
- },
- {
- "values": [
- {
- "type": "System.DivideByZeroException",
- "value": "Attempted to divide by zero.",
- "module": "System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=1111111111111111",
- "thread_id": 1,
- "stacktrace": {
- "frames": [
- {
- "function": "Invoke",
- "module": "Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddleware",
- "in_app": False,
- "package": "Microsoft.AspNetCore.Diagnostics, Version=3.1.3.0, Culture=neutral, PublicKeyToken=111111",
- "instruction_offset": 130,
- },
- {
- "function": "InvokeHandlerMethodAsync",
- "module": "Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure.PageActionInvoker",
- "in_app": False,
- "package": "Microsoft.AspNetCore.Mvc.RazorPages, Version=3.1.3.0, Culture=neutral, PublicKeyToken=111111",
- "instruction_offset": 202,
- },
- ]
- },
- }
- ]
- },
- ]
- BROWSER_TAGS = [
- {
- "device": "Desktop",
- "browser": "GlitchBot 1.2",
- "os.name": "Linux",
- "server_name": "glitch-server",
- "browser.name": "GlitchBot",
- },
- {
- "device": "Mobile",
- "browser": "Firefox 120",
- "os.name": "Android",
- "server_name": "glitch-server",
- "browser.name": "Firefox",
- },
- {
- "device": "Desktop",
- "browser": "bingbot 2.0",
- "os.name": "Other",
- "server_name": "cool-server",
- "browser.name": "bingbot",
- },
- {
- "browser": "Chrome 106.0.0",
- "os.name": "Windows",
- "release": "v1.0.0",
- "browser.name": "Chrome",
- },
- ]
- CULPRITS = [
- "/src/Controller/FunController.php in App\Controller\FunController::showFun",
- "blarg.php in ?",
- "subscriber.contract.view.modal.block.unblock",
- ]
- SERVER_TAGS = [
- {
- "os.name": "Linux",
- "server_name": "ip-111-11-11-111.ec3.internal",
- },
- {
- "server_name": "11335c17-b136-1e4a-1241-e243221c1221",
- },
- ]
- TAG_CHOICES = BROWSER_TAGS + SERVER_TAGS
- TITLE_CHOICES = [
- "The error has happened here",
- "ErrorException: Notice: Trying to access array offset on value of type null",
- "WorkerLostError: Worker exited prematurely: signal 15 (SIGTERM) Job: 1.",
- "ErrorException: Warning: filesize(): stat failed for /var/www/vhosts/example.com/private/me/data/1",
- "Project\Database\QueryException: SQLSTATE[22P02]: Invalid text representation: 7 ERROR: invalid input syntax for type uuid: 12345",
- "OperationalError: ERROR: no more connections allowed (max_client_conn)",
- ]
- def generate_tags() -> dict[str, str]:
- tags: dict[str, str] = random.choice(TAG_CHOICES)
- if environment := random.choice(ENVIRONMENTS):
- tags["environment"] = environment
- if release := random.choice(RELEASES):
- tags["release"] = release
- return tags
|