graphvent/manager_test.go

408 lines
12 KiB
Go

2023-04-08 15:23:40 -06:00
package main
import (
"testing"
"time"
2023-05-29 23:54:52 -06:00
"fmt"
2023-04-08 15:23:40 -06:00
)
type graph_tester testing.T
const listner_timeout = 100 * time.Millisecond
func (t * graph_tester) CheckForValue(listener chan GraphSignal, str string) {
2023-04-08 15:23:40 -06:00
timeout := time.After(listner_timeout)
select {
case <- listener:
return
2023-04-08 15:23:40 -06:00
case <-timeout:
t.Fatal(str)
2023-04-08 15:23:40 -06:00
}
}
func (t * graph_tester) CheckForNone(listener chan GraphSignal, str string) {
2023-04-08 15:23:40 -06:00
timeout := time.After(listner_timeout)
select {
case <- listener:
t.Fatal(str)
2023-04-08 15:23:40 -06:00
case <-timeout:
}
}
func TestNewResourceAdd(t *testing.T) {
name := "Test Resource"
description := "A resource for testing"
children := []Resource{}
2023-05-29 23:54:52 -06:00
root_event := NewEvent("", "", []Resource{})
2023-04-08 15:23:40 -06:00
test_resource := NewResource(name, description, children)
event_manager := NewEventManager(root_event, []Resource{test_resource})
2023-04-08 15:23:40 -06:00
res := event_manager.FindResource(test_resource.ID())
if res == nil {
t.Fatal("Failed to find Resource in EventManager after adding")
}
if res.Name() != name || res.Description() != description {
t.Fatal("Name/description of returned resource did not match added resource")
}
}
func TestDoubleResourceAdd(t * testing.T) {
2023-05-29 23:54:52 -06:00
root_event := NewEvent("", "", []Resource{})
2023-04-08 15:23:40 -06:00
test_resource := NewResource("", "", []Resource{})
event_manager := NewEventManager(root_event, []Resource{test_resource})
err := event_manager.AddResource(test_resource)
2023-04-08 15:23:40 -06:00
if err == nil {
2023-04-08 15:23:40 -06:00
t.Fatal("Second AddResource returned nil")
}
}
func TestMissingResourceAdd(t * testing.T) {
2023-05-29 23:54:52 -06:00
root_event := NewEvent("", "", []Resource{})
2023-04-08 15:23:40 -06:00
r1 := NewResource("r1", "", []Resource{})
r2 := NewResource("r2", "", []Resource{r1})
event_manager := NewEventManager(root_event, []Resource{})
2023-04-08 15:23:40 -06:00
err := event_manager.AddResource(r2)
if err == nil {
t.Fatal("AddResource with missing child returned nil")
}
}
func TestTieredResource(t * testing.T) {
2023-05-29 23:54:52 -06:00
root_event := NewEvent("", "", []Resource{})
2023-04-08 15:23:40 -06:00
r1 := NewResource("r1", "", []Resource{})
r2 := NewResource("r2", "", []Resource{r1})
event_manager := NewEventManager(root_event, []Resource{r1, r2})
if event_manager == nil {
t.Fatal("Failed to create event manager with tiered resources")
2023-04-08 15:23:40 -06:00
}
}
func TestResourceUpdate(t * testing.T) {
2023-05-29 23:54:52 -06:00
root_event := NewEvent("", "", []Resource{})
2023-04-08 15:23:40 -06:00
r1 := NewResource("r1", "", []Resource{})
r2 := NewResource("r2", "", []Resource{})
r3 := NewResource("r3", "", []Resource{r1, r2})
2023-04-08 15:26:04 -06:00
r4 := NewResource("r4", "", []Resource{r3})
2023-04-08 15:23:40 -06:00
event_manager := NewEventManager(root_event, []Resource{r1, r2, r3, r4})
if event_manager == nil {
2023-04-08 15:23:40 -06:00
t.Fatal("Failed to add initial tiered resources for test")
}
r1_l := r1.UpdateChannel()
r2_l := r2.UpdateChannel()
r3_l := r3.UpdateChannel()
2023-04-08 15:26:04 -06:00
r4_l := r4.UpdateChannel()
2023-04-08 15:23:40 -06:00
// Calling Update() on the parent with no other parents should only notify node listeners
println("UPDATE_START")
r3.Update(NewSignal(nil, "test"))
println("UPDATE_DONE")
(*graph_tester)(t).CheckForNone(r1_l, "Update on r1 after updating r3")
(*graph_tester)(t).CheckForNone(r2_l, "Update on r2 after updating r3")
(*graph_tester)(t).CheckForValue(r3_l, "No update on r3 after updating r3")
(*graph_tester)(t).CheckForValue(r4_l, "No update on r4 after updating r3")
2023-04-08 15:23:40 -06:00
// Calling Update() on a child should notify listeners of the parent and child, but not siblings
r2.Update(NewSignal(nil, "test"))
(*graph_tester)(t).CheckForNone(r1_l, "Update on r1 after updating r2")
(*graph_tester)(t).CheckForValue(r2_l, "No update on r2 after updating r2")
(*graph_tester)(t).CheckForValue(r3_l, "No update on r3 after updating r2")
(*graph_tester)(t).CheckForValue(r4_l, "No update on r4 after updating r2")
2023-04-08 15:23:40 -06:00
// Calling Update() on a child should notify listeners of the parent and child, but not siblings
r1.Update(NewSignal(nil, "test"))
(*graph_tester)(t).CheckForValue(r1_l, "No update on r1 after updating r1")
(*graph_tester)(t).CheckForNone(r2_l, "Update on r2 after updating r1")
(*graph_tester)(t).CheckForValue(r3_l, "No update on r3 after updating r1")
(*graph_tester)(t).CheckForValue(r4_l, "No update on r4 after updating r1")
2023-04-08 15:23:40 -06:00
}
func TestAddEvent(t * testing.T) {
2023-05-29 23:54:52 -06:00
root_event := NewEvent("", "", []Resource{})
2023-04-08 16:59:36 -06:00
r1 := NewResource("r1", "", []Resource{})
r2 := NewResource("r2", "", []Resource{r1})
name := "Test Event"
description := "A test event"
resources := []Resource{r2}
2023-05-29 23:54:52 -06:00
new_event := NewEvent(name, description, resources)
2023-04-08 16:59:36 -06:00
event_manager := NewEventManager(root_event, []Resource{r1})
err := event_manager.AddResource(r2)
if err != nil {
t.Fatal("Failed to add r2 to event_manager")
}
err = event_manager.AddEvent(root_event, new_event, nil)
2023-04-08 16:59:36 -06:00
if err != nil {
t.Fatalf("Failed to add new_event to root_event: %s", err)
}
res := event_manager.FindEvent(new_event.ID())
if res == nil {
t.Fatalf("Failed to find new_event in event_manager: %s", err)
}
2023-04-08 16:59:36 -06:00
if res.Name() != name || res.Description() != description {
t.Fatal("Event found in event_manager didn't match added")
}
res_required := res.RequiredResources()
if len(res_required) < 1 {
t.Fatal("Event found in event_manager didn't match added")
} else if res_required[0].ID() != r2.ID() {
t.Fatal("Event found in event_manager didn't match added")
}
}
2023-04-08 15:23:40 -06:00
func TestLockResource(t * testing.T) {
2023-05-29 23:54:52 -06:00
root_event := NewEvent("", "", []Resource{})
test_event := NewEvent("", "", []Resource{})
2023-04-08 15:23:40 -06:00
r1 := NewResource("r1", "", []Resource{})
r2 := NewResource("r2", "", []Resource{})
r3 := NewResource("r3", "", []Resource{r1, r2})
r4 := NewResource("r3", "", []Resource{r1, r2})
2023-04-08 15:23:40 -06:00
event_manager := NewEventManager(root_event, []Resource{r1, r2, r3, r4})
2023-04-08 15:23:40 -06:00
if event_manager == nil {
2023-04-08 15:23:40 -06:00
t.Fatal("Failed to add initial tiered resources for test")
}
r1_l := r1.UpdateChannel()
rel := root_event.UpdateChannel()
err := r3.Lock(root_event)
if err != nil {
t.Fatal("Failed to lock r3")
}
err = r3.NotifyLocked()
if err != nil {
t.Fatal("Failed to notify r3 of lock")
}
(*graph_tester)(t).CheckForValue(r1_l, "No value on r1 update channel")
(*graph_tester)(t).CheckForValue(rel, "No value on root_event update channel")
err = r3.Lock(root_event)
if err == nil {
t.Fatal("Locked r3 after locking r3")
}
err = r4.Lock(root_event)
if err == nil {
t.Fatal("Locked r4 after locking r3")
}
err = r1.Lock(root_event)
if err == nil {
t.Fatal("Locked r1 after locking r3")
}
err = r3.Unlock(test_event)
if err == nil {
t.Fatal("Unlocked r3 with event that didn't lock it")
}
err = r3.Unlock(root_event)
if err != nil {
t.Fatal("Failed to unlock r3")
}
err = r3.NotifyUnlocked()
if err != nil {
t.Fatal("Failed to notify r3 it was unlocked")
}
(*graph_tester)(t).CheckForValue(r1_l, "No update on r1 after unlocking r3")
(*graph_tester)(t).CheckForValue(rel, "No update on rel after unlocking r3")
err = r4.Lock(root_event)
if err != nil {
t.Fatal("Failed to lock r4 after unlocking r3")
}
err = r4.NotifyLocked()
if err != nil {
t.Fatal("Failed to notify r4 it was locked")
}
(*graph_tester)(t).CheckForValue(r1_l, "No update on r1 after locking r4")
(*graph_tester)(t).CheckForValue(rel, "No update on rel after locking r4")
err = r4.Unlock(root_event)
if err != nil {
t.Fatal("Failed to unlock r4")
}
err = r4.NotifyUnlocked()
if err != nil {
t.Fatal("Failed to notify r4 it was unlocked")
}
(*graph_tester)(t).CheckForValue(r1_l, "No update on r1 after unlocking r4")
(*graph_tester)(t).CheckForValue(rel, "No update on rel after unlocking r4")
2023-04-08 15:23:40 -06:00
}
func TestAddToEventQueue(t * testing.T) {
2023-05-29 23:54:52 -06:00
queue := NewEventQueue("q", "", []Resource{})
event_1 := NewEvent("1", "", []Resource{})
event_2 := NewEvent("2", "", []Resource{})
err := queue.AddChild(event_1, nil)
if err == nil {
t.Fatal("suceeded in added nil info to queue")
}
err = queue.AddChild(event_1, &EventQueueInfo{priority: 0})
if err != nil {
t.Fatal("failed to add valid event + info to queue")
}
err = queue.AddChild(event_2, &EventQueueInfo{priority: 1})
if err != nil {
t.Fatal("failed to add valid event + info to queue")
}
}
func TestStartBaseEvent(t * testing.T) {
event_1 := NewEvent("TestStartBaseEvent event_1", "", []Resource{})
2023-05-29 23:54:52 -06:00
r := event_1.DoneResource()
manager := NewEventManager(event_1, []Resource{})
e_l := event_1.UpdateChannel()
r_l := r.UpdateChannel()
(*graph_tester)(t).CheckForNone(e_l, "Update on event_1 before starting")
(*graph_tester)(t).CheckForNone(r_l, "Update on r_1 before starting")
if r.Owner() != event_1 {
t.Fatal("r is not owned by event_1")
}
2023-05-29 23:54:52 -06:00
err := manager.Run()
if err != nil {
t.Fatal(err)
}
// Check that the update channels for the event and resource have updates
(*graph_tester)(t).CheckForValue(e_l, "No update on event_1 after starting")
(*graph_tester)(t).CheckForValue(r_l, "No update on r_l after starting")
if r.Owner() != nil {
t.Fatal("r still owned after event completed")
}
}
2023-05-29 23:54:52 -06:00
func TestAbortEventQueue(t * testing.T) {
root_event := NewEventQueue("", "", []Resource{})
r := root_event.DoneResource()
manager := NewEventManager(root_event, []Resource{})
r1 := NewResource("r1", "", []Resource{})
err := manager.AddResource(r1)
if err != nil {
t.Fatal(err)
}
r1.Lock(root_event)
e1 := NewEvent("1", "", []Resource{r1})
e1_info := NewEventQueueInfo(1)
// Add an event so that the queue doesn't auto complete
err = manager.AddEvent(root_event, e1, e1_info)
if err != nil {
t.Fatal(err)
}
// Now that an event manager is constructed with a queue and 3 basic events
// start the queue and check that all the events are executed
go func() {
time.Sleep(time.Second)
root_event.Abort()
}()
err = manager.Run()
if err == nil {
t.Fatal("event manager completed without error")
}
if r.Owner() == nil {
t.Fatal("root event was finished after starting")
}
}
func TestStartEventQueue(t * testing.T) {
root_event := NewEventQueue("root_event", "", []Resource{})
2023-05-29 23:54:52 -06:00
r := root_event.DoneResource()
rel := root_event.UpdateChannel();
res_1 := NewResource("test_resource", "", []Resource{})
res_2 := NewResource("test_resource", "", []Resource{})
manager := NewEventManager(root_event, []Resource{res_1, res_2})
e1:= NewEvent("1", "", []Resource{res_1, res_2})
2023-05-29 23:54:52 -06:00
e1_r := e1.DoneResource()
e1_info := NewEventQueueInfo(1)
err := manager.AddEvent(root_event, e1, e1_info)
if err != nil {
t.Fatal("Failed to add e1 to manager")
}
(*graph_tester)(t).CheckForValue(rel, "No update on root_event after adding e1")
e2 := NewEvent("1", "", []Resource{res_1})
2023-05-29 23:54:52 -06:00
e2_r := e2.DoneResource()
e2_info := NewEventQueueInfo(2)
err = manager.AddEvent(root_event, e2, e2_info)
if err != nil {
t.Fatal("Failed to add e2 to manager")
}
(*graph_tester)(t).CheckForValue(rel, "No update on root_event after adding e2")
e3 := NewEvent("1", "", []Resource{res_2})
2023-05-29 23:54:52 -06:00
e3_r := e3.DoneResource()
e3_info := NewEventQueueInfo(3)
err = manager.AddEvent(root_event, e3, e3_info)
if err != nil {
t.Fatal("Failed to add e3 to manager")
}
(*graph_tester)(t).CheckForValue(rel, "No update on root_event after adding e3")
e1_l := e1.UpdateChannel();
e2_l := e2.UpdateChannel();
e3_l := e3.UpdateChannel();
2023-05-29 23:54:52 -06:00
// Abort the event after 5 seconds just in case
go func() {
time.Sleep(5 * time.Second)
root_event.Abort()
}()
// Now that an event manager is constructed with a queue and 3 basic events
// start the queue and check that all the events are executed
2023-05-29 23:54:52 -06:00
err = manager.Run()
if err != nil {
t.Fatal(err)
}
if r.Owner() != nil {
2023-05-29 23:54:52 -06:00
fmt.Printf("root_event.DoneResource(): %p", root_event.DoneResource())
t.Fatal("root event was not finished after starting")
}
if e1_r.Owner() != nil {
t.Fatal("e1 was not completed")
}
(*graph_tester)(t).CheckForValue(e1_l, "No update on e1 after running")
if e2_r.Owner() != nil {
t.Fatal("e2 was not completed")
}
(*graph_tester)(t).CheckForValue(e2_l, "No update on e2 after running")
if e3_r.Owner() != nil {
t.Fatal("e3 was not completed")
}
(*graph_tester)(t).CheckForValue(e3_l, "No update on e3 after running")
}