James Tombleson
11892b9a7b
* starting the ffxiv reader * working on getting the standard interface for sources based on the work for ffxiv * got more of ffxiv working and updated tests * Author and Description can be extracted and validated with tests * added uuid package * ffxiv core logic is working and testes updated to reflect it. * Updated the scheduler with the current sources and moved them from main * updated reddit to allow modern go to talk to the endpoint with a debug flag * gave the func a better name * cleaned up main * Moved cache to its own package and updated tests" * moved config to its own package and added basic tests * updated imports * minor update" * interface update and cache model update * updated the scheduler for basic services. No DB calls yet * updated db calls * bypassed the reddit test as its flaky in github
41 lines
1007 B
Go
41 lines
1007 B
Go
package cache_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/jtom38/newsbot/collector/services/cache"
|
|
)
|
|
|
|
func TestNewCacheClient(t *testing.T) {
|
|
_ = cache.NewCacheClient("placeholder")
|
|
}
|
|
|
|
func TestInsert(t *testing.T) {
|
|
cache := cache.NewCacheClient("Testing")
|
|
cache.Insert("UnitTesting", "Something, or nothing")
|
|
}
|
|
|
|
func TestFindGroupMissing(t *testing.T) {
|
|
cache := cache.NewCacheClient("faker")
|
|
_, err := cache.FindByKey("UnitTesting")
|
|
if err == nil { panic("Nothing was appended with the requested group.") }
|
|
}
|
|
|
|
func TestFindGroupExists(t *testing.T) {
|
|
cache := cache.NewCacheClient("Testing")
|
|
cache.Insert("UnitTesting", "Something")
|
|
_, err := cache.FindByKey("UnitTesting")
|
|
if err != nil { panic("") }
|
|
}
|
|
|
|
func TestCacheStorage(t *testing.T) {
|
|
cc := cache.NewCacheClient("Testing")
|
|
cc.Insert("UnitTesting01", "test")
|
|
cc.Insert("UnitTesting02", "Test")
|
|
|
|
cache := cache.NewCacheClient("Testing")
|
|
_, err := cache.FindByKey("UnitTesting02")
|
|
if err != nil { panic("expected to find the value")}
|
|
}
|
|
|