Skip to content

Commit

Permalink
add the breakpad symbol endpoint to the mock server
Browse files Browse the repository at this point in the history
  • Loading branch information
joshedney committed Mar 4, 2025
1 parent da3ac56 commit 0a8d6fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Enhancements

- Log name of device used in BitBar sessions [726](https://github.com/bugsnag/maze-runner/pull/726)
- Add the `breakpad-symbol` endpoint to the mock server []()

# 9.23.2 - 2025/02/20

Expand Down
1 change: 1 addition & 0 deletions lib/maze/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ def start
server.mount '/ndk-symbol', Servlets::Servlet, :sourcemaps
server.mount '/proguard', Servlets::Servlet, :sourcemaps
server.mount '/dsym', Servlets::Servlet, :sourcemaps
server.mount '/breakpad-symbol', Servlets::Servlet, :sourcemaps
server.mount '/command', Servlets::CommandServlet
server.mount '/commands', Servlets::AllCommandsServlet
server.mount '/logs', Servlets::LogServlet
Expand Down
2 changes: 2 additions & 0 deletions test/unit/maze/server_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def test_start_cleanily_configured_bind_address
mock_http_server.expects(:mount).with('/ndk-symbol', any_parameters).once
mock_http_server.expects(:mount).with('/proguard', any_parameters).once
mock_http_server.expects(:mount).with('/dsym', any_parameters).once
mock_http_server.expects(:mount).with('/breakpad-symbol', any_parameters).once
mock_http_server.expects(:mount).with('/command', any_parameters).once
mock_http_server.expects(:mount).with('/commands', any_parameters).once
mock_http_server.expects(:mount).with('/logs', any_parameters).once
Expand Down Expand Up @@ -102,6 +103,7 @@ def test_start_on_retry
mock_http_server.expects(:mount).with('/ndk-symbol', any_parameters).once
mock_http_server.expects(:mount).with('/proguard', any_parameters).once
mock_http_server.expects(:mount).with('/dsym', any_parameters).once
mock_http_server.expects(:mount).with('/breakpad-symbol', any_parameters).once
mock_http_server.expects(:mount).with('/logs', any_parameters).once
mock_http_server.expects(:mount).with('/reflect', any_parameters).once
mock_http_server.expects(:mount).with('/command', any_parameters).once
Expand Down

0 comments on commit 0a8d6fe

Please sign in to comment.