forked from ustaxcourt/ef-cms
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #411 from flexion/sprint-48.5
Sprint 48.5
- Loading branch information
Showing
703 changed files
with
7,288 additions
and
4,698 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**In which environment did you see this bug?** | ||
|
||
**What were you doing when you discovered this bug? (Demoing, smoke tests, testing other functionality, etc.)** | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Actual behavior** | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. | ||
|
||
Process for logging bug: | ||
* Complete the above information | ||
* Add a severity tag (Critical, High Severity, Medium Severity or Low Severity). See below for priority definition. | ||
* For critical and high-severity bugs, communicate immediately to project manager or tech lead | ||
* For medium or low severity, review daily during stand up | ||
|
||
Severity Definition: | ||
* Critical defects usually block an entire system’s or module’s functionality, and testing cannot proceed further without such a defect being fixed. An example of a critical defect is an application’s returning a server error message after a login attempt. | ||
* High-severity defects affect key functionality of an application, and the app behaves in a way that is strongly different from the one stated in the requirements, for instance, an email service provider does not allow adding more than one email address to the recipient field. | ||
* Medium-severity defects are identified in case a minor function does not behave in a way stated in the requirements. An example of such a defect is a broken link in an application’s Terms and Requirements section. | ||
* Low-severity defects are primarily related to an application’s UI and may include such an example as a slightly different size or color of a button. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
const { | ||
addDocketEntryAndServeOpinion, | ||
createOpinion, | ||
gotoAdvancedPractitionerSearch, | ||
gotoAdvancedSearch, | ||
goToOpinionSearch, | ||
searchByDocketNumber, | ||
searchByPetitionerName, | ||
searchByPractitionerbarNumber, | ||
searchByPractitionerName, | ||
searchOpinionByKeyword, | ||
} = require('../support/pages/advanced-search'); | ||
const { | ||
closeScannerSetupDialog, | ||
goToCreateCase, | ||
goToReviewCase, | ||
serveCaseToIrs, | ||
} = require('../support/pages/create-paper-case'); | ||
const { | ||
fillInCreateCaseFromPaperForm, | ||
} = require('../../cypress/support/pages/create-paper-petition'); | ||
const { getUserToken, login } = require('../support/pages/login'); | ||
const { goToCaseDetail } = require('../support/pages/case-detail'); | ||
const { goToMyDocumentQC } = require('../support/pages/document-qc'); | ||
|
||
const barNumberToSearchBy = 'PT1234'; | ||
let testData = {}; | ||
let token; | ||
|
||
describe('Create and serve a case to search for', () => { | ||
before(async () => { | ||
const results = await getUserToken( | ||
'petitionsclerk1@example.com', | ||
'Testing1234$', | ||
); | ||
token = results.AuthenticationResult.IdToken; | ||
}); | ||
|
||
it('should be able to login', () => { | ||
login(token); | ||
}); | ||
|
||
it('should be able to create a case and serve to IRS', () => { | ||
goToMyDocumentQC(); | ||
goToCreateCase(); | ||
closeScannerSetupDialog(); | ||
fillInCreateCaseFromPaperForm(testData); | ||
goToReviewCase(testData); | ||
serveCaseToIrs(); | ||
}); | ||
}); | ||
|
||
describe('Case Advanced Search', () => { | ||
before(async () => { | ||
const results = await getUserToken( | ||
'docketclerk1@example.com', | ||
'Testing1234$', | ||
); | ||
token = results.AuthenticationResult.IdToken; | ||
}); | ||
|
||
it('should be able to login', () => { | ||
login(token); | ||
}); | ||
|
||
it('should be able to search for case by practitioner name', () => { | ||
gotoAdvancedSearch(); | ||
searchByPetitionerName(testData.testPetitionerName); | ||
}); | ||
|
||
it('should be able to search for case by docket number', () => { | ||
gotoAdvancedSearch(); | ||
searchByDocketNumber(testData.createdPaperDocketNumber); | ||
}); | ||
}); | ||
|
||
describe('Practitioner Search', () => { | ||
before(async () => { | ||
const results = await getUserToken( | ||
'docketclerk1@example.com', | ||
'Testing1234$', | ||
); | ||
token = results.AuthenticationResult.IdToken; | ||
}); | ||
|
||
it('should be able to login', () => { | ||
login(token); | ||
}); | ||
|
||
it('should be able to search for a practitioner by name', () => { | ||
gotoAdvancedPractitionerSearch(); | ||
searchByPractitionerName(); | ||
}); | ||
|
||
it('should be able to search for for a practitioner by bar number', () => { | ||
gotoAdvancedPractitionerSearch(); | ||
searchByPractitionerbarNumber(barNumberToSearchBy); | ||
}); | ||
}); | ||
|
||
describe('Opinion Search', () => { | ||
before(async () => { | ||
const results = await getUserToken( | ||
'docketclerk1@example.com', | ||
'Testing1234$', | ||
); | ||
token = results.AuthenticationResult.IdToken; | ||
}); | ||
|
||
it('should be able to login', () => { | ||
login(token); | ||
}); | ||
|
||
it('should create an opinion to search for', () => { | ||
goToCaseDetail(testData.createdPaperDocketNumber); | ||
createOpinion(); | ||
addDocketEntryAndServeOpinion(); | ||
}); | ||
|
||
it('should be able to search for an opinion by keyword', () => { | ||
goToOpinionSearch(); | ||
searchOpinionByKeyword('smoke test'); | ||
}); | ||
}); |
Oops, something went wrong.