723 lines
39 KiB
Forth
723 lines
39 KiB
Forth
module PrayerTracker.UI.ViewModelsTests
|
|
|
|
open System
|
|
open Expecto
|
|
open Microsoft.AspNetCore.Html
|
|
open PrayerTracker.Entities
|
|
open PrayerTracker.Tests.TestLocalization
|
|
open PrayerTracker.Utils
|
|
open PrayerTracker.ViewModels
|
|
|
|
|
|
/// Filter function that filters nothing
|
|
let countAll _ = true
|
|
|
|
|
|
module ReferenceListTests =
|
|
|
|
[<Tests>]
|
|
let asOfDateListTests =
|
|
testList "ReferenceList.asOfDateList" [
|
|
test "has all three options listed" {
|
|
let asOf = ReferenceList.asOfDateList _s
|
|
Expect.hasCountOf asOf 3u countAll "There should have been 3 as-of choices returned"
|
|
Expect.exists asOf (fun (x, _) -> x = NoDisplay.code) "The option for no display was not found"
|
|
Expect.exists asOf (fun (x, _) -> x = ShortDate.code) "The option for a short date was not found"
|
|
Expect.exists asOf (fun (x, _) -> x = LongDate.code) "The option for a full date was not found"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let emailTypeListTests =
|
|
testList "ReferenceList.emailTypeList" [
|
|
test "includes default type" {
|
|
let typs = ReferenceList.emailTypeList HtmlFormat _s
|
|
Expect.hasCountOf typs 3u countAll "There should have been 3 e-mail type options returned"
|
|
let top = Seq.head typs
|
|
Expect.equal (fst top) "" "The default option should have been blank"
|
|
Expect.equal (snd top).Value "Group Default (HTML Format)" "The default option label was incorrect"
|
|
let nxt = typs |> Seq.skip 1 |> Seq.head
|
|
Expect.equal (fst nxt) HtmlFormat.code "The 2nd option should have been HTML"
|
|
let lst = typs |> Seq.last
|
|
Expect.equal (fst lst) PlainTextFormat.code "The 3rd option should have been plain text"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let expirationListTests =
|
|
testList "ReferenceList.expirationList" [
|
|
test "excludes immediate expiration if not required" {
|
|
let exps = ReferenceList.expirationList _s false
|
|
Expect.hasCountOf exps 2u countAll "There should have been 2 expiration types returned"
|
|
Expect.exists exps (fun (exp, _) -> exp = Automatic.code)
|
|
"The option for automatic expiration was not found"
|
|
Expect.exists exps (fun (exp, _) -> exp = Manual.code) "The option for manual expiration was not found"
|
|
}
|
|
test "includes immediate expiration if required" {
|
|
let exps = ReferenceList.expirationList _s true
|
|
Expect.hasCountOf exps 3u countAll "There should have been 3 expiration types returned"
|
|
Expect.exists exps (fun (exp, _) -> exp = Automatic.code)
|
|
"The option for automatic expiration was not found"
|
|
Expect.exists exps (fun (exp, _) -> exp = Manual.code) "The option for manual expiration was not found"
|
|
Expect.exists exps (fun (exp, _) -> exp = Forced.code)
|
|
"The option for immediate expiration was not found"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let requestTypeListTests =
|
|
testList "ReferenceList.requestTypeList" [
|
|
let withList f () =
|
|
(ReferenceList.requestTypeList >> f) _s
|
|
yield! testFixture withList [
|
|
yield "returns 5 types",
|
|
fun typs -> Expect.hasCountOf typs 5u countAll "There should have been 5 request types returned"
|
|
yield!
|
|
[ CurrentRequest; LongTermRequest; PraiseReport; Expecting; Announcement ]
|
|
|> List.map (fun typ ->
|
|
$"contains \"%O{typ}\"",
|
|
fun typs ->
|
|
Expect.isSome (typs |> List.tryFind (fun x -> fst x = typ))
|
|
$"""The "%O{typ}" option was not found""")
|
|
]
|
|
]
|
|
|
|
|
|
[<Tests>]
|
|
let announcementTests =
|
|
let empty = { SendToClass = "N"; Text = "<p>unit testing</p>"; AddToRequestList = None; RequestType = None }
|
|
testList "Announcement" [
|
|
test "plainText strips HTML" {
|
|
let ann = { empty with Text = "<p>unit testing</p>" }
|
|
Expect.equal ann.PlainText "unit testing" "Plain text should have stripped HTML"
|
|
}
|
|
test "plainText wraps at 74 characters" {
|
|
let ann = { empty with Text = String.replicate 80 "x" }
|
|
let txt = ann.PlainText.Split "\n"
|
|
Expect.hasCountOf txt 3u countAll "There should have been two lines of plain text returned"
|
|
Expect.stringHasLength txt[0] 74 "The first line should have been wrapped at 74 characters"
|
|
Expect.stringHasLength txt[1] 6 "The second line should have had the remaining 6 characters"
|
|
Expect.stringHasLength txt[2] 0 "The third line should have been blank"
|
|
}
|
|
test "plainText wraps at 74 characters and strips HTML" {
|
|
let ann = { empty with Text = sprintf "<strong>%s</strong>" (String.replicate 80 "z") }
|
|
let txt = ann.PlainText
|
|
Expect.stringStarts txt "zzz" "HTML should have been stripped from the front of the plain text"
|
|
Expect.equal (txt.ToCharArray ()).[74] '\n' "The text should have been broken at 74 characters"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let appViewInfoTests =
|
|
testList "AppViewInfo" [
|
|
test "fresh is constructed properly" {
|
|
let vi = AppViewInfo.fresh
|
|
Expect.isEmpty vi.Style "There should have been no styles set"
|
|
Expect.isEmpty vi.Script "There should have been no scripts set"
|
|
Expect.isNone vi.HelpLink "The help link should have been set to none"
|
|
Expect.isEmpty vi.Messages "There should have been no messages set"
|
|
Expect.equal vi.Version "" "The version should have been blank"
|
|
Expect.isGreaterThan vi.RequestStart DateTime.MinValue.Ticks "The request start time should have been set"
|
|
Expect.isNone vi.User "There should not have been a user"
|
|
Expect.isNone vi.Group "There should not have been a small group"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let assignGroupsTests =
|
|
testList "AssignGroups" [
|
|
test "fromUser populates correctly" {
|
|
let usr = { User.empty with userId = Guid.NewGuid (); firstName = "Alice"; lastName = "Bob" }
|
|
let asg = AssignGroups.fromUser usr
|
|
Expect.equal asg.UserId usr.userId "The user ID was not filled correctly"
|
|
Expect.equal asg.UserName usr.fullName "The user name was not filled correctly"
|
|
Expect.equal asg.SmallGroups "" "The small group string was not filled correctly"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let editChurchTests =
|
|
testList "EditChurch" [
|
|
test "fromChurch populates correctly when interface exists" {
|
|
let church =
|
|
{ Church.empty with
|
|
churchId = Guid.NewGuid ()
|
|
name = "Unit Test"
|
|
city = "Testlandia"
|
|
st = "UT"
|
|
hasInterface = true
|
|
interfaceAddress = Some "https://test-dem-units.test"
|
|
}
|
|
let edit = EditChurch.fromChurch church
|
|
Expect.equal edit.ChurchId church.churchId "The church ID was not filled correctly"
|
|
Expect.equal edit.Name church.name "The church name was not filled correctly"
|
|
Expect.equal edit.City church.city "The church's city was not filled correctly"
|
|
Expect.equal edit.State church.st "The church's state was not filled correctly"
|
|
Expect.isSome edit.HasInterface "The church should show that it has an interface"
|
|
Expect.equal edit.HasInterface (Some true) "The hasInterface flag should be true"
|
|
Expect.isSome edit.InterfaceAddress "The interface address should exist"
|
|
Expect.equal edit.InterfaceAddress church.interfaceAddress "The interface address was not filled correctly"
|
|
}
|
|
test "fromChurch populates correctly when interface does not exist" {
|
|
let edit =
|
|
EditChurch.fromChurch
|
|
{ Church.empty with
|
|
churchId = Guid.NewGuid ()
|
|
name = "Unit Test"
|
|
city = "Testlandia"
|
|
st = "UT"
|
|
}
|
|
Expect.isNone edit.HasInterface "The church should not show that it has an interface"
|
|
Expect.isNone edit.InterfaceAddress "The interface address should not exist"
|
|
}
|
|
test "empty is as expected" {
|
|
let edit = EditChurch.empty
|
|
Expect.equal edit.ChurchId Guid.Empty "The church ID should be the empty GUID"
|
|
Expect.equal edit.Name "" "The church name should be blank"
|
|
Expect.equal edit.City "" "The church's city should be blank"
|
|
Expect.equal edit.State "" "The church's state should be blank"
|
|
Expect.isNone edit.HasInterface "The church should not show that it has an interface"
|
|
Expect.isNone edit.InterfaceAddress "The interface address should not exist"
|
|
}
|
|
test "isNew works on a new church" {
|
|
Expect.isTrue EditChurch.empty.IsNew "An empty GUID should be flagged as a new church"
|
|
}
|
|
test "isNew works on an existing church" {
|
|
Expect.isFalse { EditChurch.empty with ChurchId = Guid.NewGuid () }.IsNew
|
|
"A non-empty GUID should not be flagged as a new church"
|
|
}
|
|
test "populateChurch works correctly when an interface exists" {
|
|
let edit =
|
|
{ EditChurch.empty with
|
|
ChurchId = Guid.NewGuid ()
|
|
Name = "Test Baptist Church"
|
|
City = "Testerville"
|
|
State = "TE"
|
|
HasInterface = Some true
|
|
InterfaceAddress = Some "https://test.units"
|
|
}
|
|
let church = edit.PopulateChurch Church.empty
|
|
Expect.notEqual church.churchId edit.ChurchId "The church ID should not have been modified"
|
|
Expect.equal church.name edit.Name "The church name was not updated correctly"
|
|
Expect.equal church.city edit.City "The church's city was not updated correctly"
|
|
Expect.equal church.st edit.State "The church's state was not updated correctly"
|
|
Expect.isTrue church.hasInterface "The church should show that it has an interface"
|
|
Expect.isSome church.interfaceAddress "The interface address should exist"
|
|
Expect.equal church.interfaceAddress edit.InterfaceAddress "The interface address was not updated correctly"
|
|
}
|
|
test "populateChurch works correctly when an interface does not exist" {
|
|
let church =
|
|
{ EditChurch.empty with
|
|
Name = "Test Baptist Church"
|
|
City = "Testerville"
|
|
State = "TE"
|
|
}.PopulateChurch Church.empty
|
|
Expect.isFalse church.hasInterface "The church should show that it has an interface"
|
|
Expect.isNone church.interfaceAddress "The interface address should exist"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let editMemberTests =
|
|
testList "EditMember" [
|
|
test "fromMember populates with group default format" {
|
|
let mbr =
|
|
{ Member.empty with
|
|
memberId = Guid.NewGuid ()
|
|
memberName = "Test Name"
|
|
email = "test_units@example.com"
|
|
}
|
|
let edit = EditMember.fromMember mbr
|
|
Expect.equal edit.MemberId mbr.memberId "The member ID was not filled correctly"
|
|
Expect.equal edit.Name mbr.memberName "The member name was not filled correctly"
|
|
Expect.equal edit.Email mbr.email "The e-mail address was not filled correctly"
|
|
Expect.equal edit.Format "" "The e-mail format should have been blank for group default"
|
|
}
|
|
test "fromMember populates with specific format" {
|
|
let edit = EditMember.fromMember { Member.empty with format = Some HtmlFormat.code }
|
|
Expect.equal edit.Format HtmlFormat.code "The e-mail format was not filled correctly"
|
|
}
|
|
test "empty is as expected" {
|
|
let edit = EditMember.empty
|
|
Expect.equal edit.MemberId Guid.Empty "The member ID should have been an empty GUID"
|
|
Expect.equal edit.Name "" "The member name should have been blank"
|
|
Expect.equal edit.Email "" "The e-mail address should have been blank"
|
|
Expect.equal edit.Format "" "The e-mail format should have been blank"
|
|
}
|
|
test "isNew works for a new member" {
|
|
Expect.isTrue EditMember.empty.IsNew "An empty GUID should be flagged as a new member"
|
|
}
|
|
test "isNew works for an existing member" {
|
|
Expect.isFalse { EditMember.empty with MemberId = Guid.NewGuid () }.IsNew
|
|
"A non-empty GUID should not be flagged as a new member"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let editPreferencesTests =
|
|
testList "EditPreferences" [
|
|
test "fromPreferences succeeds for named colors and private list" {
|
|
let prefs = ListPreferences.empty
|
|
let edit = EditPreferences.fromPreferences prefs
|
|
Expect.equal edit.ExpireDays prefs.daysToExpire "The expiration days were not filled correctly"
|
|
Expect.equal edit.DaysToKeepNew prefs.daysToKeepNew "The days to keep new were not filled correctly"
|
|
Expect.equal edit.LongTermUpdateWeeks prefs.longTermUpdateWeeks
|
|
"The weeks for update were not filled correctly"
|
|
Expect.equal edit.RequestSort prefs.requestSort.code "The request sort was not filled correctly"
|
|
Expect.equal edit.EmailFromName prefs.emailFromName "The e-mail from name was not filled correctly"
|
|
Expect.equal edit.EmailFromAddress prefs.emailFromAddress "The e-mail from address was not filled correctly"
|
|
Expect.equal edit.DefaultEmailType prefs.defaultEmailType.code
|
|
"The default e-mail type was not filled correctly"
|
|
Expect.equal edit.LineColorType "Name" "The heading line color type was not derived correctly"
|
|
Expect.equal edit.LineColor prefs.lineColor "The heading line color was not filled correctly"
|
|
Expect.equal edit.HeadingColorType "Name" "The heading text color type was not derived correctly"
|
|
Expect.equal edit.HeadingColor prefs.headingColor "The heading text color was not filled correctly"
|
|
Expect.equal edit.Fonts prefs.listFonts "The list fonts were not filled correctly"
|
|
Expect.equal edit.HeadingFontSize prefs.headingFontSize "The heading font size was not filled correctly"
|
|
Expect.equal edit.ListFontSize prefs.textFontSize "The list text font size was not filled correctly"
|
|
Expect.equal edit.TimeZone prefs.timeZoneId "The time zone was not filled correctly"
|
|
Expect.isSome edit.GroupPassword "The group password should have been set"
|
|
Expect.equal edit.GroupPassword (Some prefs.groupPassword) "The group password was not filled correctly"
|
|
Expect.equal edit.Visibility RequestVisibility.``private``
|
|
"The list visibility was not derived correctly"
|
|
Expect.equal edit.PageSize prefs.pageSize "The page size was not filled correctly"
|
|
Expect.equal edit.AsOfDate prefs.asOfDateDisplay.code "The as-of date display was not filled correctly"
|
|
}
|
|
test "fromPreferences succeeds for RGB line color and password-protected list" {
|
|
let prefs = { ListPreferences.empty with lineColor = "#ff0000"; groupPassword = "pw" }
|
|
let edit = EditPreferences.fromPreferences prefs
|
|
Expect.equal edit.LineColorType "RGB" "The heading line color type was not derived correctly"
|
|
Expect.equal edit.LineColor prefs.lineColor "The heading line color was not filled correctly"
|
|
Expect.isSome edit.GroupPassword "The group password should have been set"
|
|
Expect.equal edit.GroupPassword (Some prefs.groupPassword) "The group password was not filled correctly"
|
|
Expect.equal edit.Visibility RequestVisibility.passwordProtected
|
|
"The list visibility was not derived correctly"
|
|
}
|
|
test "fromPreferences succeeds for RGB text color and public list" {
|
|
let prefs = { ListPreferences.empty with headingColor = "#0000ff"; isPublic = true }
|
|
let edit = EditPreferences.fromPreferences prefs
|
|
Expect.equal edit.HeadingColorType "RGB" "The heading text color type was not derived correctly"
|
|
Expect.equal edit.HeadingColor prefs.headingColor "The heading text color was not filled correctly"
|
|
Expect.isSome edit.GroupPassword "The group password should have been set"
|
|
Expect.equal edit.GroupPassword (Some "") "The group password was not filled correctly"
|
|
Expect.equal edit.Visibility RequestVisibility.``public``
|
|
"The list visibility was not derived correctly"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let editRequestTests =
|
|
testList "EditRequest" [
|
|
test "empty is as expected" {
|
|
let mt = EditRequest.empty
|
|
Expect.equal mt.RequestId Guid.Empty "The request ID should be an empty GUID"
|
|
Expect.equal mt.RequestType CurrentRequest.code "The request type should have been \"Current\""
|
|
Expect.isNone mt.EnteredDate "The entered date should have been None"
|
|
Expect.isNone mt.SkipDateUpdate """The "skip date update" flag should have been None"""
|
|
Expect.isNone mt.Requestor "The requestor should have been None"
|
|
Expect.equal mt.Expiration Automatic.code """The expiration should have been "A" (Automatic)"""
|
|
Expect.equal mt.Text "" "The text should have been blank"
|
|
}
|
|
test "fromRequest succeeds" {
|
|
let req =
|
|
{ PrayerRequest.empty with
|
|
prayerRequestId = Guid.NewGuid ()
|
|
requestType = CurrentRequest
|
|
requestor = Some "Me"
|
|
expiration = Manual
|
|
text = "the text"
|
|
}
|
|
let edit = EditRequest.fromRequest req
|
|
Expect.equal edit.RequestId req.prayerRequestId "The request ID was not filled correctly"
|
|
Expect.equal edit.RequestType req.requestType.code "The request type was not filled correctly"
|
|
Expect.equal edit.Requestor req.requestor "The requestor was not filled correctly"
|
|
Expect.equal edit.Expiration Manual.code "The expiration was not filled correctly"
|
|
Expect.equal edit.Text req.text "The text was not filled correctly"
|
|
}
|
|
test "isNew works for a new request" {
|
|
Expect.isTrue EditRequest.empty.IsNew "An empty GUID should be flagged as a new request"
|
|
}
|
|
test "isNew works for an existing request" {
|
|
Expect.isFalse { EditRequest.empty with RequestId = Guid.NewGuid () }.IsNew
|
|
"A non-empty GUID should not be flagged as a new request"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let editSmallGroupTests =
|
|
testList "EditSmallGroup" [
|
|
test "fromGroup succeeds" {
|
|
let grp =
|
|
{ SmallGroup.empty with
|
|
smallGroupId = Guid.NewGuid ()
|
|
name = "test group"
|
|
churchId = Guid.NewGuid ()
|
|
}
|
|
let edit = EditSmallGroup.fromGroup grp
|
|
Expect.equal edit.SmallGroupId grp.smallGroupId "The small group ID was not filled correctly"
|
|
Expect.equal edit.Name grp.name "The name was not filled correctly"
|
|
Expect.equal edit.ChurchId grp.churchId "The church ID was not filled correctly"
|
|
}
|
|
test "empty is as expected" {
|
|
let mt = EditSmallGroup.empty
|
|
Expect.equal mt.SmallGroupId Guid.Empty "The small group ID should be an empty GUID"
|
|
Expect.equal mt.Name "" "The name should be blank"
|
|
Expect.equal mt.ChurchId Guid.Empty "The church ID should be an empty GUID"
|
|
}
|
|
test "isNew works for a new small group" {
|
|
Expect.isTrue EditSmallGroup.empty.IsNew "An empty GUID should be flagged as a new small group"
|
|
}
|
|
test "isNew works for an existing small group" {
|
|
Expect.isFalse { EditSmallGroup.empty with SmallGroupId = Guid.NewGuid () }.IsNew
|
|
"A non-empty GUID should not be flagged as a new small group"
|
|
}
|
|
test "populateGroup succeeds" {
|
|
let edit =
|
|
{ EditSmallGroup.empty with
|
|
Name = "test name"
|
|
ChurchId = Guid.NewGuid ()
|
|
}
|
|
let grp = edit.populateGroup SmallGroup.empty
|
|
Expect.equal grp.name edit.Name "The name was not populated correctly"
|
|
Expect.equal grp.churchId edit.ChurchId "The church ID was not populated correctly"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let editUserTests =
|
|
testList "EditUser" [
|
|
test "empty is as expected" {
|
|
let mt = EditUser.empty
|
|
Expect.equal mt.UserId Guid.Empty "The user ID should be an empty GUID"
|
|
Expect.equal mt.FirstName "" "The first name should be blank"
|
|
Expect.equal mt.LastName "" "The last name should be blank"
|
|
Expect.equal mt.Email "" "The e-mail address should be blank"
|
|
Expect.equal mt.Password "" "The password should be blank"
|
|
Expect.equal mt.PasswordConfirm "" "The confirmed password should be blank"
|
|
Expect.isNone mt.IsAdmin "The IsAdmin flag should be None"
|
|
}
|
|
test "fromUser succeeds" {
|
|
let usr =
|
|
{ User.empty with
|
|
userId = Guid.NewGuid ()
|
|
firstName = "user"
|
|
lastName = "test"
|
|
emailAddress = "a@b.c"
|
|
}
|
|
let edit = EditUser.fromUser usr
|
|
Expect.equal edit.UserId usr.userId "The user ID was not filled correctly"
|
|
Expect.equal edit.FirstName usr.firstName "The first name was not filled correctly"
|
|
Expect.equal edit.LastName usr.lastName "The last name was not filled correctly"
|
|
Expect.equal edit.Email usr.emailAddress "The e-mail address was not filled correctly"
|
|
Expect.isNone edit.IsAdmin "The IsAdmin flag was not filled correctly"
|
|
}
|
|
test "isNew works for a new user" {
|
|
Expect.isTrue EditUser.empty.IsNew "An empty GUID should be flagged as a new user"
|
|
}
|
|
test "isNew works for an existing user" {
|
|
Expect.isFalse { EditUser.empty with UserId = Guid.NewGuid () }.IsNew
|
|
"A non-empty GUID should not be flagged as a new user"
|
|
}
|
|
test "populateUser succeeds" {
|
|
let edit =
|
|
{ EditUser.empty with
|
|
FirstName = "name"
|
|
LastName = "eman"
|
|
Email = "n@m.e"
|
|
IsAdmin = Some true
|
|
Password = "testpw"
|
|
}
|
|
let hasher = fun x -> x + "+"
|
|
let usr = edit.PopulateUser User.empty hasher
|
|
Expect.equal usr.firstName edit.FirstName "The first name was not populated correctly"
|
|
Expect.equal usr.lastName edit.LastName "The last name was not populated correctly"
|
|
Expect.equal usr.emailAddress edit.Email "The e-mail address was not populated correctly"
|
|
Expect.isTrue usr.isAdmin "The isAdmin flag was not populated correctly"
|
|
Expect.equal usr.passwordHash (hasher edit.Password) "The password hash was not populated correctly"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let groupLogOnTests =
|
|
testList "GroupLogOn" [
|
|
test "empty is as expected" {
|
|
let mt = GroupLogOn.empty
|
|
Expect.equal mt.SmallGroupId Guid.Empty "The small group ID should be an empty GUID"
|
|
Expect.equal mt.Password "" "The password should be blank"
|
|
Expect.isNone mt.RememberMe "Remember Me should be None"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let maintainRequestsTests =
|
|
testList "MaintainRequests" [
|
|
test "empty is as expected" {
|
|
let mt = MaintainRequests.empty
|
|
Expect.isEmpty mt.Requests "The requests for the model should have been empty"
|
|
Expect.equal mt.SmallGroup.smallGroupId Guid.Empty "The small group should have been an empty one"
|
|
Expect.isNone mt.OnlyActive "The only active flag should have been None"
|
|
Expect.isNone mt.SearchTerm "The search term should have been None"
|
|
Expect.isNone mt.PageNbr "The page number should have been None"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let messageLevelTests =
|
|
testList "MessageLevel" [
|
|
test "toString for Info is as expected" {
|
|
Expect.equal (MessageLevel.toString Info) "Info" """The string value of "Info" is incorrect"""
|
|
}
|
|
test "toString for Warning is as expected" {
|
|
Expect.equal (MessageLevel.toString Warning) "WARNING" """The string value of "Warning" is incorrect"""
|
|
}
|
|
test "toString for Error is as expected" {
|
|
Expect.equal (MessageLevel.toString Error) "ERROR" """The string value of "Error" is incorrect"""
|
|
}
|
|
test "toCssClass for Info is as expected" {
|
|
Expect.equal (MessageLevel.toCssClass Info) "info" """The string value of "Info" is incorrect"""
|
|
}
|
|
test "toCssClass for Warning is as expected" {
|
|
Expect.equal (MessageLevel.toCssClass Warning) "warning" """The string value of "Warning" is incorrect"""
|
|
}
|
|
test "toCssClass for Error is as expected" {
|
|
Expect.equal (MessageLevel.toCssClass Error) "error" """The string value of "Error" is incorrect"""
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let requestListTests =
|
|
testList "RequestList" [
|
|
let withRequestList f () =
|
|
{ Requests = [
|
|
{ PrayerRequest.empty with
|
|
requestType = CurrentRequest
|
|
requestor = Some "Zeb"
|
|
text = "zyx"
|
|
updatedDate = DateTime.Today
|
|
}
|
|
{ PrayerRequest.empty with
|
|
requestType = CurrentRequest
|
|
requestor = Some "Aaron"
|
|
text = "abc"
|
|
updatedDate = DateTime.Today - TimeSpan.FromDays 9.
|
|
}
|
|
{ PrayerRequest.empty with
|
|
requestType = PraiseReport
|
|
text = "nmo"
|
|
updatedDate = DateTime.Today
|
|
}
|
|
]
|
|
Date = DateTime.Today
|
|
SmallGroup = SmallGroup.empty
|
|
ShowHeader = false
|
|
Recipients = []
|
|
CanEmail = false
|
|
}
|
|
|> f
|
|
yield! testFixture withRequestList [
|
|
"AsHtml succeeds without header or as-of date",
|
|
fun reqList ->
|
|
let htmlList = { reqList with SmallGroup = { reqList.SmallGroup with name = "Test HTML Group" } }
|
|
let html = htmlList.AsHtml _s
|
|
Expect.equal -1 (html.IndexOf "Test HTML Group")
|
|
"The small group name should not have existed (no header)"
|
|
let curReqHeading =
|
|
[ """<table style="font-family:Century Gothic,Tahoma,Luxi Sans,sans-serif;page-break-inside:avoid;">"""
|
|
"<tr>"
|
|
"""<td style="font-size:16pt;color:maroon;padding:3px 0;border-top:solid 3px navy;border-bottom:solid 3px navy;font-weight:bold;">"""
|
|
" Current Requests </td></tr></table>"
|
|
]
|
|
|> String.concat ""
|
|
Expect.stringContains html curReqHeading """Heading for category "Current Requests" not found"""
|
|
let curReqHtml =
|
|
[ "<ul>"
|
|
"""<li style="list-style-type:circle;font-family:Century Gothic,Tahoma,Luxi Sans,sans-serif;font-size:12pt;padding-bottom:.25em;">"""
|
|
"<strong>Zeb</strong> — zyx</li>"
|
|
"""<li style="list-style-type:disc;font-family:Century Gothic,Tahoma,Luxi Sans,sans-serif;font-size:12pt;padding-bottom:.25em;">"""
|
|
"<strong>Aaron</strong> — abc</li></ul>"
|
|
]
|
|
|> String.concat ""
|
|
Expect.stringContains html curReqHtml """Expected HTML for "Current Requests" requests not found"""
|
|
let praiseHeading =
|
|
[ """<table style="font-family:Century Gothic,Tahoma,Luxi Sans,sans-serif;page-break-inside:avoid;">"""
|
|
"<tr>"
|
|
"""<td style="font-size:16pt;color:maroon;padding:3px 0;border-top:solid 3px navy;border-bottom:solid 3px navy;font-weight:bold;">"""
|
|
" Praise Reports </td></tr></table>"
|
|
]
|
|
|> String.concat ""
|
|
Expect.stringContains html praiseHeading """Heading for category "Praise Reports" not found"""
|
|
let praiseHtml =
|
|
[ "<ul>"
|
|
"""<li style="list-style-type:circle;font-family:Century Gothic,Tahoma,Luxi Sans,sans-serif;font-size:12pt;padding-bottom:.25em;">"""
|
|
"nmo</li></ul>"
|
|
]
|
|
|> String.concat ""
|
|
Expect.stringContains html praiseHtml """Expected HTML for "Praise Reports" requests not found"""
|
|
"AsHtml succeeds with header",
|
|
fun reqList ->
|
|
let htmlList =
|
|
{ reqList with
|
|
SmallGroup = { reqList.SmallGroup with name = "Test HTML Group" }
|
|
ShowHeader = true
|
|
}
|
|
let html = htmlList.AsHtml _s
|
|
let lstHeading =
|
|
[ """<div style="text-align:center;font-family:Century Gothic,Tahoma,Luxi Sans,sans-serif">"""
|
|
"""<span style="font-size:16pt;"><strong>Prayer Requests</strong></span><br>"""
|
|
"""<span style="font-size:12pt;"><strong>Test HTML Group</strong><br>"""
|
|
htmlList.Date.ToString "MMMM d, yyyy"
|
|
"</span></div><br>"
|
|
]
|
|
|> String.concat ""
|
|
Expect.stringContains html lstHeading "Expected HTML for the list heading not found"
|
|
// spot check; without header test tests this exhaustively
|
|
Expect.stringContains html "<strong>Zeb</strong> — zyx</li>" "Expected requests not found"
|
|
"AsHtml succeeds with short as-of date",
|
|
fun reqList ->
|
|
let htmlList =
|
|
{ reqList with
|
|
SmallGroup =
|
|
{ reqList.SmallGroup with
|
|
preferences = { reqList.SmallGroup.preferences with asOfDateDisplay = ShortDate }
|
|
}
|
|
}
|
|
let html = htmlList.AsHtml _s
|
|
let expected =
|
|
htmlList.Requests[0].updatedDate.ToShortDateString ()
|
|
|> sprintf """<strong>Zeb</strong> — zyx<i style="font-size:9.60pt"> (as of %s)</i>"""
|
|
// spot check; if one request has it, they all should
|
|
Expect.stringContains html expected "Expected short as-of date not found"
|
|
"AsHtml succeeds with long as-of date",
|
|
fun reqList ->
|
|
let htmlList =
|
|
{ reqList with
|
|
SmallGroup =
|
|
{ reqList.SmallGroup with
|
|
preferences = { reqList.SmallGroup.preferences with asOfDateDisplay = LongDate }
|
|
}
|
|
}
|
|
let html = htmlList.AsHtml _s
|
|
let expected =
|
|
htmlList.Requests[0].updatedDate.ToLongDateString ()
|
|
|> sprintf """<strong>Zeb</strong> — zyx<i style="font-size:9.60pt"> (as of %s)</i>"""
|
|
// spot check; if one request has it, they all should
|
|
Expect.stringContains html expected "Expected long as-of date not found"
|
|
"AsText succeeds with no as-of date",
|
|
fun reqList ->
|
|
let textList = { reqList with SmallGroup = { reqList.SmallGroup with name = "Test Group" } }
|
|
let text = textList.AsText _s
|
|
Expect.stringContains text $"{textList.SmallGroup.name}\n" "Small group name not found"
|
|
Expect.stringContains text "Prayer Requests\n" "List heading not found"
|
|
Expect.stringContains text ((textList.Date.ToString "MMMM d, yyyy") + "\n \n") "List date not found"
|
|
Expect.stringContains text "--------------------\n CURRENT REQUESTS\n--------------------\n"
|
|
"""Heading for category "Current Requests" not found"""
|
|
Expect.stringContains text " + Zeb - zyx\n" "First request not found"
|
|
Expect.stringContains text " - Aaron - abc\n \n"
|
|
"Second request not found; should have been end of category"
|
|
Expect.stringContains text "------------------\n PRAISE REPORTS\n------------------\n"
|
|
"""Heading for category "Praise Reports" not found"""
|
|
Expect.stringContains text " + nmo\n \n" "Last request not found"
|
|
"AsText succeeds with short as-of date",
|
|
fun reqList ->
|
|
let textList =
|
|
{ reqList with
|
|
SmallGroup =
|
|
{ reqList.SmallGroup with
|
|
preferences = { reqList.SmallGroup.preferences with asOfDateDisplay = ShortDate }
|
|
}
|
|
}
|
|
let text = textList.AsText _s
|
|
let expected =
|
|
textList.Requests[0].updatedDate.ToShortDateString ()
|
|
|> sprintf " + Zeb - zyx (as of %s)"
|
|
// spot check; if one request has it, they all should
|
|
Expect.stringContains text expected "Expected short as-of date not found"
|
|
"AsText succeeds with long as-of date",
|
|
fun reqList ->
|
|
let textList =
|
|
{ reqList with
|
|
SmallGroup =
|
|
{ reqList.SmallGroup with
|
|
preferences = { reqList.SmallGroup.preferences with asOfDateDisplay = LongDate }
|
|
}
|
|
}
|
|
let text = textList.AsText _s
|
|
let expected =
|
|
textList.Requests[0].updatedDate.ToLongDateString ()
|
|
|> sprintf " + Zeb - zyx (as of %s)"
|
|
// spot check; if one request has it, they all should
|
|
Expect.stringContains text expected "Expected long as-of date not found"
|
|
"IsNew succeeds for both old and new requests",
|
|
fun reqList ->
|
|
let allReqs = reqList.RequestsByType _s
|
|
let _, _, reqs = allReqs |> List.find (fun (typ, _, _) -> typ = CurrentRequest)
|
|
Expect.hasCountOf reqs 2u countAll "There should have been two requests"
|
|
Expect.isTrue (reqList.IsNew (List.head reqs)) "The first request should have been new"
|
|
Expect.isFalse (reqList.IsNew (List.last reqs)) "The second request should not have been new"
|
|
"RequestsByType succeeds",
|
|
fun reqList ->
|
|
let allReqs = reqList.RequestsByType _s
|
|
Expect.hasLength allReqs 2 "There should have been two types of request groupings"
|
|
let maybeCurrent = allReqs |> List.tryFind (fun (typ, _, _) -> typ = CurrentRequest)
|
|
Expect.isSome maybeCurrent "There should have been current requests"
|
|
let _, _, reqs = Option.get maybeCurrent
|
|
Expect.hasCountOf reqs 2u countAll "There should have been two requests"
|
|
let first = List.head reqs
|
|
Expect.equal first.text "zyx" "The requests should be sorted by updated date descending"
|
|
Expect.isTrue (allReqs |> List.exists (fun (typ, _, _) -> typ = PraiseReport))
|
|
"There should have been praise reports"
|
|
Expect.isFalse (allReqs |> List.exists (fun (typ, _, _) -> typ = Announcement))
|
|
"There should not have been announcements"
|
|
"RequestsByType succeeds and sorts by requestor",
|
|
fun reqList ->
|
|
let newList =
|
|
{ reqList with
|
|
SmallGroup =
|
|
{ reqList.SmallGroup with
|
|
preferences = { reqList.SmallGroup.preferences with requestSort = SortByRequestor }
|
|
}
|
|
}
|
|
let allReqs = newList.RequestsByType _s
|
|
let _, _, reqs = allReqs |> List.find (fun (typ, _, _) -> typ = CurrentRequest)
|
|
Expect.hasCountOf reqs 2u countAll "There should have been two requests"
|
|
let first = List.head reqs
|
|
Expect.equal first.text "abc" "The requests should be sorted by requestor"
|
|
]
|
|
]
|
|
|
|
[<Tests>]
|
|
let userLogOnTests =
|
|
testList "UserLogOn" [
|
|
test "empty is as expected" {
|
|
let mt = UserLogOn.empty
|
|
Expect.equal mt.Email "" "The e-mail address should be blank"
|
|
Expect.equal mt.Password "" "The password should be blank"
|
|
Expect.equal mt.SmallGroupId Guid.Empty "The small group ID should be an empty GUID"
|
|
Expect.isNone mt.RememberMe "Remember Me should be None"
|
|
Expect.isNone mt.RedirectUrl "Redirect URL should be None"
|
|
}
|
|
]
|
|
|
|
[<Tests>]
|
|
let userMessageTests =
|
|
testList "UserMessage" [
|
|
test "Error is constructed properly" {
|
|
let msg = UserMessage.error
|
|
Expect.equal msg.Level Error "Incorrect message level"
|
|
Expect.equal msg.Text HtmlString.Empty "Text should have been blank"
|
|
Expect.isNone msg.Description "Description should have been None"
|
|
}
|
|
test "Warning is constructed properly" {
|
|
let msg = UserMessage.warning
|
|
Expect.equal msg.Level Warning "Incorrect message level"
|
|
Expect.equal msg.Text HtmlString.Empty "Text should have been blank"
|
|
Expect.isNone msg.Description "Description should have been None"
|
|
}
|
|
test "Info is constructed properly" {
|
|
let msg = UserMessage.info
|
|
Expect.equal msg.Level Info "Incorrect message level"
|
|
Expect.equal msg.Text HtmlString.Empty "Text should have been blank"
|
|
Expect.isNone msg.Description "Description should have been None"
|
|
}
|
|
]
|