mirror of
https://github.com/gophish/gophish
synced 2024-11-14 16:27:23 +00:00
Minor cleanup for campaign results
This commit is contained in:
parent
81da804761
commit
d6cbc1a936
2 changed files with 5 additions and 9 deletions
|
@ -34,12 +34,11 @@ type Campaign struct {
|
|||
|
||||
// CampaignResults is a struct representing the results from a campaign
|
||||
type CampaignResults struct {
|
||||
Id int64 `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Status string `json:"status"`
|
||||
Reported string `json:"reported"`
|
||||
Results []Result `json:"results, omitempty"`
|
||||
Events []Event `json:"timeline,omitempty"`
|
||||
Id int64 `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Status string `json:"status"`
|
||||
Results []Result `json:"results, omitempty"`
|
||||
Events []Event `json:"timeline,omitempty"`
|
||||
}
|
||||
|
||||
// CampaignSummaries is a struct representing the overview of campaigns
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
package models
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/mail"
|
||||
"regexp"
|
||||
"time"
|
||||
|
@ -69,10 +68,8 @@ func (s *ModelsSuite) TestResultVariableStatus(ch *check.C) {
|
|||
// emails to be sent immediately, while others will be scheduled
|
||||
for _, r := range c.Results {
|
||||
if r.SendDate.Before(c.CreatedDate) || r.SendDate.Equal(c.CreatedDate) {
|
||||
fmt.Println("SENDING")
|
||||
ch.Assert(r.Status, check.Equals, STATUS_SENDING)
|
||||
} else {
|
||||
fmt.Println("SCHEDULED")
|
||||
ch.Assert(r.Status, check.Equals, STATUS_SCHEDULED)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue