Closed
Bug 758681
Opened 13 years ago
Closed 13 years ago
[traceback] 500 Internal Server Error submitting app manifest
Categories
(Marketplace Graveyard :: General, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: stephend, Assigned: andy+bugzilla)
References
()
Details
(Whiteboard: [fromAutomation])
Our automation triggers a 500 Internal Server Error on https://marketplace-dev.allizom.org/en-US/developers/submit/app/manifest.
Here's the test (https://github.com/mozilla/marketplace-tests/blob/master/tests/desktop/test_developer_hub.py#L18):
def test_app_submission(self, mozwebqa):
app = MockApplication()
dev_hub = DeveloperHub(mozwebqa)
dev_hub.go_to_developer_hub()
dev_hub.login()
dev_agreement = dev_hub.header.click_submit_app()
"""Agree with the developer agreement and continue if it was not accepted
in a previous app submit"""
manifest_form = dev_agreement.click_continue()
Assert.true(manifest_form.is_the_current_submission_stage, '\n Expected step is: App Manifest \n Actual step is: %s' % manifest_form.current_step)
"""submit the app manifest url and validate it"""
manifest_form.type_app_manifest_url(app['url'])
manifest_form.click_validate()
Assert.true(manifest_form.app_validation_status,
msg=manifest_form.app_validation_message)
app_details = manifest_form.click_continue()
> Assert.true(app_details.is_the_current_submission_stage, '\n Expected step is: Details \n Actual step is: %s' % app_details.current_step)
| Assignee | ||
Comment 1•13 years ago
|
||
http://sentry.dmz.phx1.mozilla.com/marketplace-dev/group/261/events/16064/
https://github.com/mozilla/zamboni/commit/3f6adf
Clashing migration.
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
| Reporter | ||
Comment 2•13 years ago
|
||
Verified FIXED; tests are passing now.
Tests++
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•