mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* Moving query attributes from the query object to the pack-query relationship * some additional tests * http request parsing test * QueryOptions in new test_util code * initial scaffolding of new request structures * service and datastore * test outline * l2 merge conflict scrub * service tests for scheduled query service * service and datastore tests * most endpoints and transports * order of values are not deterministic with inmem * transport tests * rename PackQuery to ScheduledQuery * removing existing implementation of adding queries to packs * accounting for the new argument to NewQuery * fix alignment in sql query * removing underscore * add removed to the datastore * removed differential from the schema
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package datastore
|
|
|
|
import (
|
|
"reflect"
|
|
"runtime"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/kolide/kolide-ose/server/kolide"
|
|
)
|
|
|
|
func functionName(f func(*testing.T, kolide.Datastore)) string {
|
|
fullName := runtime.FuncForPC(reflect.ValueOf(f).Pointer()).Name()
|
|
elements := strings.Split(fullName, ".")
|
|
return elements[len(elements)-1]
|
|
}
|
|
|
|
var testFunctions = [...]func(*testing.T, kolide.Datastore){
|
|
testOrgInfo,
|
|
testCreateInvite,
|
|
testListInvites,
|
|
testDeleteInvite,
|
|
testSaveInvite,
|
|
testDeleteQuery,
|
|
testDeleteQueries,
|
|
testSaveQuery,
|
|
testListQuery,
|
|
testDeletePack,
|
|
testEnrollHost,
|
|
testAuthenticateHost,
|
|
testLabels,
|
|
testManagingLabelsOnPacks,
|
|
testPasswordResetRequests,
|
|
testCreateUser,
|
|
testSaveUser,
|
|
testUserByID,
|
|
testPasswordResetRequests,
|
|
testSearchHosts,
|
|
testSearchHostsLimit,
|
|
testSearchLabels,
|
|
testSearchLabelsLimit,
|
|
testListHostsInLabel,
|
|
testListUniqueHostsInLabels,
|
|
testDistributedQueriesForHost,
|
|
testSaveHosts,
|
|
testDeleteHost,
|
|
testListHost,
|
|
testGetHostsInPack,
|
|
testDistributedQueryCampaign,
|
|
testCleanupDistributedQueryCampaigns,
|
|
testBuiltInLabels,
|
|
testLoadPacksForQueries,
|
|
testScheduledQuery,
|
|
testDeleteScheduledQuery,
|
|
testListScheduledQueriesInPack,
|
|
testSaveScheduledQuery,
|
|
}
|