Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cs427fa20team22
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
htmoss2
cs427fa20team22
Commits
19c1fba9
Commit
19c1fba9
authored
4 years ago
by
adityab3
Browse files
Options
Downloads
Patches
Plain Diff
Added JUnit tests for PreRegisterPatientAction
parent
40142a0e
No related branches found
Branches containing commit
No related tags found
1 merge request
!3
Uc91.1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
iTrust/test/edu/ncsu/csc/itrust/unit/action/AddPreRegisterPatientActionTest.java
+98
-0
98 additions, 0 deletions
...c/itrust/unit/action/AddPreRegisterPatientActionTest.java
with
98 additions
and
0 deletions
iTrust/test/edu/ncsu/csc/itrust/unit/action/AddPreRegisterPatientActionTest.java
0 → 100644
+
98
−
0
View file @
19c1fba9
/**
* Tests for AddPatientAction
*/
package
edu.ncsu.csc.itrust.unit.action
;
import
junit.framework.TestCase
;
import
edu.ncsu.csc.itrust.action.AddPreRegisteredPatientAction
;
import
edu.ncsu.csc.itrust.beans.PatientBean
;
import
edu.ncsu.csc.itrust.dao.DAOFactory
;
import
edu.ncsu.csc.itrust.dao.mysql.AuthDAO
;
import
edu.ncsu.csc.itrust.dao.mysql.PatientDAO
;
import
edu.ncsu.csc.itrust.unit.datagenerators.TestDataGenerator
;
import
edu.ncsu.csc.itrust.unit.testutils.TestDAOFactory
;
import
edu.ncsu.csc.itrust.exception.FormValidationException
;
import
edu.ncsu.csc.itrust.exception.ITrustException
;
import
edu.ncsu.csc.itrust.enums.Role
;
public
class
AddPreRegisterPatientActionTest
extends
TestCase
{
private
DAOFactory
factory
=
TestDAOFactory
.
getTestInstance
();
private
PatientDAO
patientDAO
=
TestDAOFactory
.
getTestInstance
().
getPatientDAO
();
private
AuthDAO
authDAO
=
TestDAOFactory
.
getTestInstance
().
getAuthDAO
();
private
TestDataGenerator
gen
=
new
TestDataGenerator
();
private
AddPreRegisteredPatientAction
action
;
/**
* Sets up defaults
*/
@Override
protected
void
setUp
()
throws
Exception
{
gen
.
clearAllTables
();
action
=
new
AddPreRegisteredPatientAction
(
factory
,
0L
);
}
/**
* Test adding a patient with correct information.
*/
public
void
testPreRegisterPatientAction
()
throws
Exception
{
PatientBean
p
=
new
PatientBean
();
p
.
setFirstName
(
"Jiminy"
);
p
.
setLastName
(
"Cricket"
);
p
.
setEmail
(
"make.awish@gmail.com"
);
p
.
setPassword
(
"password"
);
p
.
setStreetAddress1
(
"SA1"
);
p
.
setStreetAddress2
(
"SA2"
);
p
.
setZip
(
"12345"
);
p
.
setCity
(
"Champaign"
);
p
.
setState
(
"IL"
);
p
.
setPhone
(
"1234567890"
);
p
.
setIcAddress1
(
"ICA1"
);
p
.
setIcAddress2
(
"ICA2"
);
p
.
setIcZip
(
"54321"
);
p
.
setIcCity
(
"Urbana"
);
p
.
setIcState
(
"AK"
);
p
.
setIcPhone
(
"1122334455"
);
long
mid
=
action
.
addPatient
(
p
);
PatientBean
p2
=
patientDAO
.
getPatient
(
mid
);
assertEquals
(
p
.
getFirstName
(),
p2
.
getFirstName
());
assertEquals
(
p
.
getLastName
(),
p2
.
getLastName
());
assertEquals
(
p
.
getEmail
(),
p2
.
getEmail
());
assertEquals
(
p
.
getStreetAddress1
(),
p2
.
getStreetAddress1
());
assertEquals
(
p
.
getStreetAddress2
(),
p2
.
getStreetAddress2
());
assertEquals
(
p
.
getZip
(),
p2
.
getZip
());
assertEquals
(
p
.
getCity
(),
p2
.
getCity
());
assertEquals
(
p
.
getState
(),
p2
.
getState
());
assertEquals
(
p
.
getPhone
(),
p2
.
getPhone
());
assertEquals
(
p
.
getIcAddress1
(),
p2
.
getIcAddress1
());
assertEquals
(
p
.
getIcAddress2
(),
p2
.
getIcAddress2
());
assertEquals
(
p
.
getIcZip
(),
p2
.
getIcZip
());
assertEquals
(
p
.
getIcCity
(),
p2
.
getIcCity
());
assertEquals
(
p
.
getIcState
(),
p
.
getIcState
());
assertEquals
(
p
.
getIcPhone
(),
p
.
getIcPhone
());
assertEquals
(
Role
.
PREREGISTEREDPATIENT
,
authDAO
.
getUserRole
(
mid
));
}
/**
* Ensure that invalid emails are not allowed
*/
public
void
testPreRegisterPatientInvalidEmail
()
throws
Exception
{
PatientBean
p
=
new
PatientBean
();
p
.
setFirstName
(
"Jiminy"
);
p
.
setLastName
(
"Cricket"
);
p
.
setEmail
(
"1234"
);
p
.
setPassword
(
"password"
);
// maybe not needed
try
{
action
.
addPatient
(
p
);
fail
(
"Invalid email"
);
}
catch
(
FormValidationException
e
)
{
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment