123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- import os.path
- import pytest
- from sentry.models import File, Release, ReleaseFile
- from sentry.testutils import RelayStoreHelper, TransactionTestCase
- from sentry.testutils.helpers.datetime import before_now, iso_format
- from tests.symbolicator import insta_snapshot_javascript_stacktrace_data
- # IMPORTANT:
- # For these tests to run, write `symbolicator.enabled: true` into your
- # `~/.sentry/config.yml` and run `sentry devservices up`
- # NOTE:
- # Run with `pytest --reuse-db tests/symbolicator/test_sourcemap.py -s` until DB issues are resolved.
- def get_fixture_path(name):
- return os.path.join(os.path.dirname(__file__), "fixtures", name)
- class SymbolicatorSourceMapIntegrationTest(RelayStoreHelper, TransactionTestCase):
- @pytest.fixture(autouse=True)
- def initialize(self, live_server):
- with self.options(
- {
- "system.internal-url-prefix": live_server.url,
- "symbolicator.sourcemaps-processing-sample-rate": 1,
- }
- ):
- # Run test case:
- yield
- @pytest.mark.skip(
- reason="Used for development only until Symbolicator with SourceMaps support is deployed."
- )
- def test_symbolicator_roundtrip(self):
- project = self.project
- release_id = "abc"
- release = Release.objects.create(
- organization_id=project.organization_id, version=release_id
- )
- release.add_project(project)
- for file in ["test.min.js", "test.js", "test.map"]:
- with open(get_fixture_path(file), "rb") as f:
- f_minified = File.objects.create(
- name=file,
- type="release.file",
- headers={"Content-Type": "application/json"},
- )
- f_minified.putfile(f)
- ReleaseFile.objects.create(
- name=f"~/{f_minified.name}",
- release_id=release.id,
- organization_id=project.organization_id,
- file=f_minified,
- )
- event_data = {
- "timestamp": iso_format(before_now(minutes=1)),
- "message": "hello",
- "platform": "javascript",
- "release": release_id,
- "exception": {
- "values": [
- {
- "type": "Error",
- "stacktrace": {
- "frames": [
- {
- "abs_path": "http://example.com/test.min.js",
- "filename": "test.min.js",
- "lineno": 1,
- "colno": 64,
- "function": "e",
- },
- {
- "abs_path": "http://example.com/test.min.js",
- "filename": "test.min.js",
- "lineno": 1,
- "colno": 136,
- "function": "r",
- },
- {
- "abs_path": "http://example.com/test.min.js",
- "filename": "test.min.js",
- "lineno": 1,
- "colno": 183,
- "function": "i",
- },
- {
- "abs_path": "http://example.com/index.html",
- "filename": "index.html",
- "lineno": 6,
- "colno": 7,
- "function": "produceStack",
- },
- ]
- },
- },
- ]
- },
- }
- event = self.post_and_retrieve_event(event_data)
- insta_snapshot_javascript_stacktrace_data(self, event.data)
|