2021-07-28 17:27:57 +00:00
|
|
|
package fyipe
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2021-07-29 08:00:22 +00:00
|
|
|
"reflect"
|
2021-07-28 17:27:57 +00:00
|
|
|
"testing"
|
2021-07-29 08:00:22 +00:00
|
|
|
"time"
|
2021-07-28 17:27:57 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var errorTracker map[string]interface{}
|
|
|
|
|
2021-07-29 08:00:22 +00:00
|
|
|
var customTimeline = &Timeline{
|
|
|
|
Category: "testing",
|
|
|
|
Data: "heyy",
|
|
|
|
Type: "info",
|
|
|
|
}
|
|
|
|
|
2021-07-28 17:27:57 +00:00
|
|
|
func init() {
|
|
|
|
fmt.Println("setting up, please wait...")
|
|
|
|
var sampleUser = GetUser()
|
|
|
|
var token, project interface{}
|
|
|
|
|
|
|
|
// Created User
|
|
|
|
res, err := MakeTestApiRequest(apiUrl+"/user/signup", sampleUser, "") // pass empty for token here
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("An error Occured %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get token and project
|
|
|
|
token = res["tokens"].(map[string]interface{})["jwtAccessToken"]
|
|
|
|
project = res["project"]
|
|
|
|
|
|
|
|
// create a component
|
|
|
|
var sampleComponent = GetNameComponent()
|
|
|
|
createdComponent, err := MakeTestApiRequest(apiUrl+"/component/"+project.(map[string]interface{})["_id"].(string), sampleComponent, token.(string))
|
|
|
|
|
|
|
|
// create an errorTracker and set it as the global error tracker.
|
|
|
|
var sampleErrorTracker = GetNameComponent()
|
|
|
|
localErrorTracker, err := MakeTestApiRequest(apiUrl+"/error-tracker/"+project.(map[string]interface{})["_id"].(string)+"/"+createdComponent["_id"].(string)+"/create", sampleErrorTracker, token.(string))
|
|
|
|
|
|
|
|
errorTracker = localErrorTracker
|
|
|
|
fmt.Println("Test setup done, Error Tracker created, tests will begin...")
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTakeInCustomTimelineEvent(t *testing.T) {
|
2021-07-29 08:00:22 +00:00
|
|
|
|
2021-07-28 17:27:57 +00:00
|
|
|
expectedResponse := customTimeline.Category
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: 10,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
InitTracker(option)
|
|
|
|
|
|
|
|
AddToTimeline(customTimeline)
|
|
|
|
|
|
|
|
currentTimeline := GetTimeline()
|
|
|
|
|
|
|
|
actualResponse := currentTimeline[0].Category
|
|
|
|
|
|
|
|
if fmt.Sprint(actualResponse) != expectedResponse {
|
|
|
|
t.Errorf("TestTakeInCustomTimelineEvent failed expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestTakeInCustomTimelineEvent success expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
}
|
|
|
|
}
|
2021-07-29 08:00:22 +00:00
|
|
|
|
|
|
|
func TestPositiveTimelineIsRequired(t *testing.T) {
|
|
|
|
expectedResponse := ErrInvalidTimeline
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: -5,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
setupResponse := InitTracker(option)
|
|
|
|
|
|
|
|
if fmt.Sprint(setupResponse) != expectedResponse {
|
|
|
|
t.Errorf("TestPositiveTimelineIsRequired failed expected %v, got %v", expectedResponse, setupResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestPositiveTimelineIsRequired success expected %v, got %v", expectedResponse, setupResponse)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func TestCustomTimelineContainsimeStamp(t *testing.T) {
|
|
|
|
|
|
|
|
expectedResponse := reflect.TypeOf(time.Now()).String()
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: 10,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
InitTracker(option)
|
|
|
|
|
|
|
|
AddToTimeline(customTimeline)
|
|
|
|
|
|
|
|
currentTimeline := GetTimeline()
|
|
|
|
|
|
|
|
actualResponse := reflect.TypeOf(currentTimeline[0].Timestamp).String()
|
|
|
|
|
|
|
|
if fmt.Sprint(actualResponse) != expectedResponse {
|
|
|
|
t.Errorf("TestCustomTimelineContainsimeStamp failed expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestCustomTimelineContainsimeStamp success expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func TestCustomTimelineContainsEventId(t *testing.T) {
|
|
|
|
|
|
|
|
expectedResponse := reflect.TypeOf("hi").String()
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: 10,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
InitTracker(option)
|
|
|
|
|
|
|
|
AddToTimeline(customTimeline)
|
|
|
|
|
|
|
|
currentTimeline := GetTimeline()
|
|
|
|
|
|
|
|
actualResponse := reflect.TypeOf(currentTimeline[0].EventId).String()
|
|
|
|
|
|
|
|
if fmt.Sprint(actualResponse) != expectedResponse {
|
|
|
|
t.Errorf("TestCustomTimelineContainsEventId failed expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestCustomTimelineContainsEventId success expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTwoTimelineContainsSameEventId(t *testing.T) {
|
|
|
|
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: 10,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
InitTracker(option)
|
|
|
|
|
|
|
|
AddToTimeline(customTimeline)
|
|
|
|
|
|
|
|
secondCustomTimeline := customTimeline
|
|
|
|
secondCustomTimeline.Category = "Randoms"
|
|
|
|
AddToTimeline(secondCustomTimeline)
|
|
|
|
|
|
|
|
currentTimeline := GetTimeline()
|
|
|
|
|
|
|
|
expectedResponse := currentTimeline[0].EventId
|
|
|
|
|
|
|
|
actualResponse := currentTimeline[1].EventId
|
|
|
|
|
|
|
|
if fmt.Sprint(actualResponse) != expectedResponse {
|
|
|
|
t.Errorf("TestTwoTimelineContainsSameEventId failed expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestTwoTimelineContainsSameEventId success expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestOlderTimelineAreDiscarded(t *testing.T) {
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: 2,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
InitTracker(option)
|
|
|
|
|
|
|
|
AddToTimeline(customTimeline)
|
|
|
|
|
|
|
|
secondCustomTimeline := customTimeline
|
|
|
|
secondCustomTimeline.Category = "Randoms"
|
|
|
|
AddToTimeline(secondCustomTimeline)
|
|
|
|
|
|
|
|
thirdCustomTimeline := &Timeline{
|
|
|
|
Category: "Common Grounds",
|
|
|
|
Type: "error",
|
|
|
|
}
|
|
|
|
AddToTimeline(thirdCustomTimeline)
|
|
|
|
|
|
|
|
// the second and third timeline should remain
|
|
|
|
expectedFirstTimelineResponse := secondCustomTimeline.Category // this should be the first time in the timeline stored
|
|
|
|
expectedSecondTimelineResponse := thirdCustomTimeline.Type // this should be the second time in the timeline stored
|
|
|
|
|
|
|
|
currentTimeline := GetTimeline()
|
|
|
|
|
|
|
|
actualFirstTimelineResponse := currentTimeline[0].Category
|
|
|
|
actualSecondTimelineResponse := currentTimeline[1].Type
|
|
|
|
|
|
|
|
if fmt.Sprint(actualFirstTimelineResponse) != expectedFirstTimelineResponse {
|
|
|
|
t.Errorf("TestTwoTimelineContainsSameEventId failed expected %v, got %v", expectedFirstTimelineResponse, actualFirstTimelineResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestTwoTimelineContainsSameEventId success expected %v, got %v", expectedFirstTimelineResponse, actualFirstTimelineResponse)
|
|
|
|
}
|
|
|
|
|
|
|
|
if fmt.Sprint(actualSecondTimelineResponse) != expectedSecondTimelineResponse {
|
|
|
|
t.Errorf("TestTwoTimelineContainsSameEventId failed expected %v, got %v", expectedSecondTimelineResponse, actualSecondTimelineResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestTwoTimelineContainsSameEventId success expected %v, got %v", expectedSecondTimelineResponse, actualSecondTimelineResponse)
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-07-29 15:47:45 +00:00
|
|
|
func TestTagIsAdded(t *testing.T) {
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: 2,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
InitTracker(option)
|
|
|
|
|
|
|
|
tagKey := "Location"
|
|
|
|
tagValue := "Warsaw"
|
|
|
|
|
|
|
|
expectedResponse := tagKey
|
|
|
|
|
|
|
|
SetTag(tagKey, tagValue)
|
|
|
|
|
|
|
|
tags := GetTag()
|
|
|
|
|
|
|
|
actualResponse := tags[0].Key
|
|
|
|
if fmt.Sprint(actualResponse) != expectedResponse {
|
|
|
|
t.Errorf("TestTagIsAdded failed expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestTagIsAdded success expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTagsAreAdded(t *testing.T) {
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: 2,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
InitTracker(option)
|
|
|
|
|
|
|
|
tags := map[string]string{
|
|
|
|
"location": "Warsaw",
|
|
|
|
"agent": "Safari",
|
|
|
|
"actor": "Tom Cruise",
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedResponse := len(tags)
|
|
|
|
|
|
|
|
SetTags(tags)
|
|
|
|
|
|
|
|
availableTags := GetTag()
|
|
|
|
|
|
|
|
actualResponse := len(availableTags)
|
|
|
|
if actualResponse != expectedResponse {
|
|
|
|
t.Errorf("TestTagsAreAdded failed expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestTagsAreAdded success expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func TestOverwriteTagsWithSameKeyWhenAdded(t *testing.T) {
|
|
|
|
timelineOpt := TrackerOption{
|
|
|
|
MaxTimeline: 2,
|
|
|
|
}
|
|
|
|
option := FyipeTrackerOption{
|
|
|
|
ErrorTrackerId: errorTracker["_id"].(string),
|
|
|
|
ErrorTrackerKey: errorTracker["key"].(string),
|
|
|
|
ApiUrl: apiUrl,
|
|
|
|
Options: timelineOpt,
|
|
|
|
}
|
|
|
|
|
|
|
|
InitTracker(option)
|
|
|
|
|
|
|
|
tags := map[string]string{
|
|
|
|
"location": "Warsaw",
|
|
|
|
"agent": "Safari",
|
|
|
|
"actor": "Tom Cruise",
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedResponse := "Kent"
|
|
|
|
|
|
|
|
SetTags(tags)
|
|
|
|
SetTag("location", "Brussels")
|
|
|
|
SetTag("location", expectedResponse)
|
|
|
|
|
|
|
|
availableTags := GetTag()
|
|
|
|
|
|
|
|
actualResponse := availableTags[0].Value // latest value for that tag location
|
|
|
|
|
|
|
|
if len(tags) != len(availableTags) { // only 3 unique tags
|
|
|
|
t.Errorf("TestOverwriteTagsWithSameKeyWhenAdded failed expected %v, got %v", len(tags), len(availableTags))
|
|
|
|
}
|
|
|
|
if actualResponse != expectedResponse {
|
|
|
|
t.Errorf("TestOverwriteTagsWithSameKeyWhenAdded failed expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
} else {
|
|
|
|
t.Logf("TestOverwriteTagsWithSameKeyWhenAdded success expected %v, got %v", expectedResponse, actualResponse)
|
|
|
|
}
|
|
|
|
}
|