2021-10-11 14:37:48 +00:00
package service
import (
"context"
2022-06-10 21:52:24 +00:00
"errors"
2022-04-18 21:19:58 +00:00
"fmt"
2021-10-11 14:37:48 +00:00
"testing"
2021-11-09 14:35:36 +00:00
"time"
2021-10-11 14:37:48 +00:00
2021-12-14 21:34:11 +00:00
"github.com/WatchBeam/clock"
2021-10-11 14:37:48 +00:00
"github.com/fleetdm/fleet/v4/server/authz"
2021-12-14 21:34:11 +00:00
"github.com/fleetdm/fleet/v4/server/contexts/viewer"
"github.com/fleetdm/fleet/v4/server/datastore/mysql"
2021-10-11 14:37:48 +00:00
"github.com/fleetdm/fleet/v4/server/fleet"
"github.com/fleetdm/fleet/v4/server/mock"
2021-12-14 21:34:11 +00:00
"github.com/fleetdm/fleet/v4/server/ptr"
2021-10-11 14:37:48 +00:00
"github.com/fleetdm/fleet/v4/server/test"
2021-12-14 21:34:11 +00:00
"github.com/stretchr/testify/assert"
2021-10-11 14:37:48 +00:00
"github.com/stretchr/testify/require"
)
2021-12-14 21:34:11 +00:00
func TestHostDetails ( t * testing . T ) {
ds := new ( mock . Store )
svc := & Service { ds : ds }
host := & fleet . Host { ID : 3 }
expectedLabels := [ ] * fleet . Label {
{
Name : "foobar" ,
Description : "the foobar label" ,
} ,
}
ds . ListLabelsForHostFunc = func ( ctx context . Context , hid uint ) ( [ ] * fleet . Label , error ) {
return expectedLabels , nil
}
expectedPacks := [ ] * fleet . Pack {
{
Name : "pack1" ,
} ,
{
Name : "pack2" ,
} ,
}
ds . ListPacksForHostFunc = func ( ctx context . Context , hid uint ) ( [ ] * fleet . Pack , error ) {
return expectedPacks , nil
}
2022-06-01 16:06:57 +00:00
ds . LoadHostSoftwareFunc = func ( ctx context . Context , host * fleet . Host , includeCVEScores bool ) error {
2021-12-14 21:34:11 +00:00
return nil
}
ds . ListPoliciesForHostFunc = func ( ctx context . Context , host * fleet . Host ) ( [ ] * fleet . HostPolicy , error ) {
return nil , nil
}
2022-07-21 02:16:03 +00:00
dsBats := [ ] * fleet . HostBattery { { HostID : host . ID , SerialNumber : "a" , CycleCount : 999 , Health : "Check Battery" } , { HostID : host . ID , SerialNumber : "b" , CycleCount : 1001 , Health : "Good" } }
2022-06-28 18:11:49 +00:00
ds . ListHostBatteriesFunc = func ( ctx context . Context , hostID uint ) ( [ ] * fleet . HostBattery , error ) {
2022-07-21 02:16:03 +00:00
return dsBats , nil
2022-06-28 18:11:49 +00:00
}
2022-07-21 02:16:03 +00:00
// Health should be replaced at the service layer with custom values determined by the cycle count. See https://github.com/fleetdm/fleet/issues/6763.
expectedBats := [ ] * fleet . HostBattery { { HostID : host . ID , SerialNumber : "a" , CycleCount : 999 , Health : "Normal" } , { HostID : host . ID , SerialNumber : "b" , CycleCount : 1001 , Health : "Replacement recommended" } }
2021-12-14 21:34:11 +00:00
only include policies in device endpoints for premium users (#6077)
This removes policy information from `GET /api/_version_/fleet/device/{token}` from non-premium Fleet instances.
Starting the server with `./build/fleet serve --dev --dev_license`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
[
{
"id": 3,
"name": "Antivirus healthy (Linux)",
"query": "SELECT score FROM (SELECT case when COUNT(*) = 2 then 1 ELSE 0 END AS score FROM processes WHERE (name = 'clamd') OR (name = 'freshclam')) WHERE score == 1;",
"description": "Checks that both ClamAV's daemon and its updater service (freshclam) are running.",
"author_id": 1,
"author_name": "Roberto",
"author_email": "test@example.com",
"team_id": null,
"resolution": "Ensure ClamAV and Freshclam are installed and running.",
"platform": "darwin,linux",
"created_at": "2022-05-23T20:53:36Z",
"updated_at": "2022-06-03T13:17:42Z",
"response": ""
}
]
```
Starting the server with `./build/fleet serve --dev`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
"not present"
```
2022-06-07 16:27:13 +00:00
opts := fleet . HostDetailOptions {
IncludeCVEScores : false ,
IncludePolicies : false ,
}
hostDetail , err := svc . getHostDetails ( test . UserContext ( test . UserAdmin ) , host , opts )
2021-12-14 21:34:11 +00:00
require . NoError ( t , err )
assert . Equal ( t , expectedLabels , hostDetail . Labels )
assert . Equal ( t , expectedPacks , hostDetail . Packs )
2022-06-28 18:11:49 +00:00
require . NotNil ( t , hostDetail . Batteries )
assert . Equal ( t , expectedBats , * hostDetail . Batteries )
2021-12-14 21:34:11 +00:00
}
func TestHostAuth ( t * testing . T ) {
ds := new ( mock . Store )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-12-14 21:34:11 +00:00
teamHost := & fleet . Host { TeamID : ptr . Uint ( 1 ) }
globalHost := & fleet . Host { }
ds . DeleteHostFunc = func ( ctx context . Context , hid uint ) error {
return nil
}
2022-01-18 01:52:09 +00:00
ds . HostLiteFunc = func ( ctx context . Context , id uint ) ( * fleet . Host , error ) {
if id == 1 {
return teamHost , nil
}
return globalHost , nil
}
2022-05-25 16:30:03 +00:00
ds . HostFunc = func ( ctx context . Context , id uint ) ( * fleet . Host , error ) {
2021-12-14 21:34:11 +00:00
if id == 1 {
return teamHost , nil
}
return globalHost , nil
}
ds . HostByIdentifierFunc = func ( ctx context . Context , identifier string ) ( * fleet . Host , error ) {
if identifier == "1" {
return teamHost , nil
}
return globalHost , nil
}
ds . ListHostsFunc = func ( ctx context . Context , filter fleet . TeamFilter , opt fleet . HostListOptions ) ( [ ] * fleet . Host , error ) {
return nil , nil
}
2022-06-01 16:06:57 +00:00
ds . LoadHostSoftwareFunc = func ( ctx context . Context , host * fleet . Host , includeCVEScores bool ) error {
2021-12-14 21:34:11 +00:00
return nil
}
ds . ListLabelsForHostFunc = func ( ctx context . Context , hid uint ) ( [ ] * fleet . Label , error ) {
return nil , nil
}
ds . ListPacksForHostFunc = func ( ctx context . Context , hid uint ) ( packs [ ] * fleet . Pack , err error ) {
return nil , nil
}
ds . AddHostsToTeamFunc = func ( ctx context . Context , teamID * uint , hostIDs [ ] uint ) error {
return nil
}
ds . ListPoliciesForHostFunc = func ( ctx context . Context , host * fleet . Host ) ( [ ] * fleet . HostPolicy , error ) {
return nil , nil
}
2022-06-28 18:11:49 +00:00
ds . ListHostBatteriesFunc = func ( ctx context . Context , hostID uint ) ( [ ] * fleet . HostBattery , error ) {
return nil , nil
}
2021-12-14 21:34:11 +00:00
ds . DeleteHostsFunc = func ( ctx context . Context , ids [ ] uint ) error {
return nil
}
2022-01-18 01:52:09 +00:00
ds . UpdateHostRefetchRequestedFunc = func ( ctx context . Context , id uint , value bool ) error {
if id == 1 {
teamHost . RefetchRequested = true
} else {
globalHost . RefetchRequested = true
}
return nil
}
2021-12-14 21:34:11 +00:00
testCases := [ ] struct {
name string
user * fleet . User
shouldFailGlobalWrite bool
shouldFailGlobalRead bool
shouldFailTeamWrite bool
shouldFailTeamRead bool
} {
{
"global admin" ,
& fleet . User { GlobalRole : ptr . String ( fleet . RoleAdmin ) } ,
false ,
false ,
false ,
false ,
} ,
{
"global maintainer" ,
& fleet . User { GlobalRole : ptr . String ( fleet . RoleMaintainer ) } ,
false ,
false ,
false ,
false ,
} ,
{
"global observer" ,
& fleet . User { GlobalRole : ptr . String ( fleet . RoleObserver ) } ,
true ,
false ,
true ,
false ,
} ,
{
"team maintainer, belongs to team" ,
& fleet . User { Teams : [ ] fleet . UserTeam { { Team : fleet . Team { ID : 1 } , Role : fleet . RoleMaintainer } } } ,
true ,
true ,
false ,
false ,
} ,
{
"team observer, belongs to team" ,
& fleet . User { Teams : [ ] fleet . UserTeam { { Team : fleet . Team { ID : 1 } , Role : fleet . RoleObserver } } } ,
true ,
true ,
true ,
false ,
} ,
{
"team maintainer, DOES NOT belong to team" ,
& fleet . User { Teams : [ ] fleet . UserTeam { { Team : fleet . Team { ID : 2 } , Role : fleet . RoleMaintainer } } } ,
true ,
true ,
true ,
true ,
} ,
{
"team observer, DOES NOT belong to team" ,
& fleet . User { Teams : [ ] fleet . UserTeam { { Team : fleet . Team { ID : 2 } , Role : fleet . RoleObserver } } } ,
true ,
true ,
true ,
true ,
} ,
}
for _ , tt := range testCases {
t . Run ( tt . name , func ( t * testing . T ) {
ctx := viewer . NewContext ( context . Background ( ) , viewer . Viewer { User : tt . user } )
only include policies in device endpoints for premium users (#6077)
This removes policy information from `GET /api/_version_/fleet/device/{token}` from non-premium Fleet instances.
Starting the server with `./build/fleet serve --dev --dev_license`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
[
{
"id": 3,
"name": "Antivirus healthy (Linux)",
"query": "SELECT score FROM (SELECT case when COUNT(*) = 2 then 1 ELSE 0 END AS score FROM processes WHERE (name = 'clamd') OR (name = 'freshclam')) WHERE score == 1;",
"description": "Checks that both ClamAV's daemon and its updater service (freshclam) are running.",
"author_id": 1,
"author_name": "Roberto",
"author_email": "test@example.com",
"team_id": null,
"resolution": "Ensure ClamAV and Freshclam are installed and running.",
"platform": "darwin,linux",
"created_at": "2022-05-23T20:53:36Z",
"updated_at": "2022-06-03T13:17:42Z",
"response": ""
}
]
```
Starting the server with `./build/fleet serve --dev`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
"not present"
```
2022-06-07 16:27:13 +00:00
opts := fleet . HostDetailOptions {
IncludeCVEScores : false ,
IncludePolicies : false ,
}
2021-12-14 21:34:11 +00:00
only include policies in device endpoints for premium users (#6077)
This removes policy information from `GET /api/_version_/fleet/device/{token}` from non-premium Fleet instances.
Starting the server with `./build/fleet serve --dev --dev_license`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
[
{
"id": 3,
"name": "Antivirus healthy (Linux)",
"query": "SELECT score FROM (SELECT case when COUNT(*) = 2 then 1 ELSE 0 END AS score FROM processes WHERE (name = 'clamd') OR (name = 'freshclam')) WHERE score == 1;",
"description": "Checks that both ClamAV's daemon and its updater service (freshclam) are running.",
"author_id": 1,
"author_name": "Roberto",
"author_email": "test@example.com",
"team_id": null,
"resolution": "Ensure ClamAV and Freshclam are installed and running.",
"platform": "darwin,linux",
"created_at": "2022-05-23T20:53:36Z",
"updated_at": "2022-06-03T13:17:42Z",
"response": ""
}
]
```
Starting the server with `./build/fleet serve --dev`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
"not present"
```
2022-06-07 16:27:13 +00:00
_ , err := svc . GetHost ( ctx , 1 , opts )
2021-12-14 21:34:11 +00:00
checkAuthErr ( t , tt . shouldFailTeamRead , err )
only include policies in device endpoints for premium users (#6077)
This removes policy information from `GET /api/_version_/fleet/device/{token}` from non-premium Fleet instances.
Starting the server with `./build/fleet serve --dev --dev_license`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
[
{
"id": 3,
"name": "Antivirus healthy (Linux)",
"query": "SELECT score FROM (SELECT case when COUNT(*) = 2 then 1 ELSE 0 END AS score FROM processes WHERE (name = 'clamd') OR (name = 'freshclam')) WHERE score == 1;",
"description": "Checks that both ClamAV's daemon and its updater service (freshclam) are running.",
"author_id": 1,
"author_name": "Roberto",
"author_email": "test@example.com",
"team_id": null,
"resolution": "Ensure ClamAV and Freshclam are installed and running.",
"platform": "darwin,linux",
"created_at": "2022-05-23T20:53:36Z",
"updated_at": "2022-06-03T13:17:42Z",
"response": ""
}
]
```
Starting the server with `./build/fleet serve --dev`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
"not present"
```
2022-06-07 16:27:13 +00:00
_ , err = svc . HostByIdentifier ( ctx , "1" , opts )
2021-12-14 21:34:11 +00:00
checkAuthErr ( t , tt . shouldFailTeamRead , err )
only include policies in device endpoints for premium users (#6077)
This removes policy information from `GET /api/_version_/fleet/device/{token}` from non-premium Fleet instances.
Starting the server with `./build/fleet serve --dev --dev_license`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
[
{
"id": 3,
"name": "Antivirus healthy (Linux)",
"query": "SELECT score FROM (SELECT case when COUNT(*) = 2 then 1 ELSE 0 END AS score FROM processes WHERE (name = 'clamd') OR (name = 'freshclam')) WHERE score == 1;",
"description": "Checks that both ClamAV's daemon and its updater service (freshclam) are running.",
"author_id": 1,
"author_name": "Roberto",
"author_email": "test@example.com",
"team_id": null,
"resolution": "Ensure ClamAV and Freshclam are installed and running.",
"platform": "darwin,linux",
"created_at": "2022-05-23T20:53:36Z",
"updated_at": "2022-06-03T13:17:42Z",
"response": ""
}
]
```
Starting the server with `./build/fleet serve --dev`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
"not present"
```
2022-06-07 16:27:13 +00:00
_ , err = svc . GetHost ( ctx , 2 , opts )
2021-12-14 21:34:11 +00:00
checkAuthErr ( t , tt . shouldFailGlobalRead , err )
only include policies in device endpoints for premium users (#6077)
This removes policy information from `GET /api/_version_/fleet/device/{token}` from non-premium Fleet instances.
Starting the server with `./build/fleet serve --dev --dev_license`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
[
{
"id": 3,
"name": "Antivirus healthy (Linux)",
"query": "SELECT score FROM (SELECT case when COUNT(*) = 2 then 1 ELSE 0 END AS score FROM processes WHERE (name = 'clamd') OR (name = 'freshclam')) WHERE score == 1;",
"description": "Checks that both ClamAV's daemon and its updater service (freshclam) are running.",
"author_id": 1,
"author_name": "Roberto",
"author_email": "test@example.com",
"team_id": null,
"resolution": "Ensure ClamAV and Freshclam are installed and running.",
"platform": "darwin,linux",
"created_at": "2022-05-23T20:53:36Z",
"updated_at": "2022-06-03T13:17:42Z",
"response": ""
}
]
```
Starting the server with `./build/fleet serve --dev`
```bash
$ curl -s https://localhost:8080/api/latest/fleet/device/1804e808-171f-4dda-9bec-f695b2f2371a | jq '.host.policies // "not present"'
"not present"
```
2022-06-07 16:27:13 +00:00
_ , err = svc . HostByIdentifier ( ctx , "2" , opts )
2021-12-14 21:34:11 +00:00
checkAuthErr ( t , tt . shouldFailGlobalRead , err )
err = svc . DeleteHost ( ctx , 1 )
checkAuthErr ( t , tt . shouldFailTeamWrite , err )
err = svc . DeleteHost ( ctx , 2 )
checkAuthErr ( t , tt . shouldFailGlobalWrite , err )
err = svc . DeleteHosts ( ctx , [ ] uint { 1 } , fleet . HostListOptions { } , nil )
checkAuthErr ( t , tt . shouldFailTeamWrite , err )
err = svc . DeleteHosts ( ctx , [ ] uint { 2 } , fleet . HostListOptions { } , nil )
checkAuthErr ( t , tt . shouldFailGlobalWrite , err )
err = svc . AddHostsToTeam ( ctx , ptr . Uint ( 1 ) , [ ] uint { 1 } )
checkAuthErr ( t , tt . shouldFailTeamWrite , err )
err = svc . AddHostsToTeamByFilter ( ctx , ptr . Uint ( 1 ) , fleet . HostListOptions { } , nil )
checkAuthErr ( t , tt . shouldFailTeamWrite , err )
err = svc . RefetchHost ( ctx , 1 )
checkAuthErr ( t , tt . shouldFailTeamRead , err )
} )
}
2022-05-10 15:29:17 +00:00
// List, GetHostSummary work for all
2021-12-14 21:34:11 +00:00
}
2022-01-18 01:52:09 +00:00
2021-10-11 14:37:48 +00:00
func TestListHosts ( t * testing . T ) {
ds := new ( mock . Store )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-10-11 14:37:48 +00:00
ds . ListHostsFunc = func ( ctx context . Context , filter fleet . TeamFilter , opt fleet . HostListOptions ) ( [ ] * fleet . Host , error ) {
return [ ] * fleet . Host {
{ ID : 1 } ,
} , nil
}
hosts , err := svc . ListHosts ( test . UserContext ( test . UserAdmin ) , fleet . HostListOptions { } )
require . NoError ( t , err )
require . Len ( t , hosts , 1 )
// anyone can list hosts
hosts , err = svc . ListHosts ( test . UserContext ( test . UserNoRoles ) , fleet . HostListOptions { } )
require . NoError ( t , err )
require . Len ( t , hosts , 1 )
// a user is required
_ , err = svc . ListHosts ( context . Background ( ) , fleet . HostListOptions { } )
require . Error ( t , err )
require . Contains ( t , err . Error ( ) , authz . ForbiddenErrorMessage )
}
2021-11-09 14:35:36 +00:00
func TestGetHostSummary ( t * testing . T ) {
ds := new ( mock . Store )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-11-09 14:35:36 +00:00
2022-01-24 17:49:21 +00:00
ds . GenerateHostStatusStatisticsFunc = func ( ctx context . Context , filter fleet . TeamFilter , now time . Time , platform * string ) ( * fleet . HostSummary , error ) {
2021-11-09 14:35:36 +00:00
return & fleet . HostSummary {
OnlineCount : 1 ,
2022-05-23 19:11:02 +00:00
OfflineCount : 5 , // offline hosts also includes mia hosts as of Fleet 4.15
2021-11-09 14:35:36 +00:00
MIACount : 3 ,
NewCount : 4 ,
TotalsHostsCount : 5 ,
2022-05-10 15:32:55 +00:00
Platforms : [ ] * fleet . HostSummaryPlatform { { Platform : "darwin" , HostsCount : 1 } , { Platform : "debian" , HostsCount : 2 } , { Platform : "centos" , HostsCount : 3 } , { Platform : "ubuntu" , HostsCount : 4 } } ,
2021-11-09 14:35:36 +00:00
} , nil
}
2022-05-10 15:32:55 +00:00
ds . LabelsSummaryFunc = func ( ctx context . Context ) ( [ ] * fleet . LabelSummary , error ) {
return [ ] * fleet . LabelSummary { { ID : 1 , Name : "All hosts" , Description : "All hosts enrolled in Fleet" , LabelType : fleet . LabelTypeBuiltIn } , { ID : 10 , Name : "Other label" , Description : "Not a builtin label" , LabelType : fleet . LabelTypeRegular } } , nil
}
2021-11-09 14:35:36 +00:00
2022-01-24 17:49:21 +00:00
summary , err := svc . GetHostSummary ( test . UserContext ( test . UserAdmin ) , nil , nil )
2021-11-09 14:35:36 +00:00
require . NoError ( t , err )
2021-11-15 14:56:13 +00:00
require . Nil ( t , summary . TeamID )
2021-11-09 14:35:36 +00:00
require . Equal ( t , uint ( 1 ) , summary . OnlineCount )
2022-05-23 19:11:02 +00:00
require . Equal ( t , uint ( 5 ) , summary . OfflineCount )
2021-11-09 14:35:36 +00:00
require . Equal ( t , uint ( 3 ) , summary . MIACount )
require . Equal ( t , uint ( 4 ) , summary . NewCount )
require . Equal ( t , uint ( 5 ) , summary . TotalsHostsCount )
2022-05-10 15:32:55 +00:00
require . Len ( t , summary . Platforms , 4 )
require . Equal ( t , uint ( 9 ) , summary . AllLinuxCount )
require . Len ( t , summary . BuiltinLabels , 1 )
require . Equal ( t , "All hosts" , summary . BuiltinLabels [ 0 ] . Name )
2021-11-09 14:35:36 +00:00
2022-01-24 17:49:21 +00:00
_ , err = svc . GetHostSummary ( test . UserContext ( test . UserNoRoles ) , nil , nil )
2021-11-09 14:35:36 +00:00
require . NoError ( t , err )
// a user is required
2022-01-24 17:49:21 +00:00
_ , err = svc . GetHostSummary ( context . Background ( ) , nil , nil )
2021-11-09 14:35:36 +00:00
require . Error ( t , err )
require . Contains ( t , err . Error ( ) , authz . ForbiddenErrorMessage )
}
2021-12-14 21:34:11 +00:00
func TestDeleteHost ( t * testing . T ) {
ds := mysql . CreateMySQLDS ( t )
defer ds . Close ( )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-12-14 21:34:11 +00:00
mockClock := clock . NewMockClock ( )
host := test . NewHost ( t , ds , "foo" , "192.168.1.10" , "1" , "1" , mockClock . Now ( ) )
assert . NotZero ( t , host . ID )
err := svc . DeleteHost ( test . UserContext ( test . UserAdmin ) , host . ID )
assert . Nil ( t , err )
filter := fleet . TeamFilter { User : test . UserAdmin }
hosts , err := ds . ListHosts ( context . Background ( ) , filter , fleet . HostListOptions { } )
assert . Nil ( t , err )
assert . Len ( t , hosts , 0 )
}
func TestAddHostsToTeamByFilter ( t * testing . T ) {
ds := new ( mock . Store )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-12-14 21:34:11 +00:00
expectedHostIDs := [ ] uint { 1 , 2 , 4 }
expectedTeam := ( * uint ) ( nil )
ds . ListHostsFunc = func ( ctx context . Context , filter fleet . TeamFilter , opt fleet . HostListOptions ) ( [ ] * fleet . Host , error ) {
var hosts [ ] * fleet . Host
for _ , id := range expectedHostIDs {
hosts = append ( hosts , & fleet . Host { ID : id } )
}
return hosts , nil
}
ds . AddHostsToTeamFunc = func ( ctx context . Context , teamID * uint , hostIDs [ ] uint ) error {
assert . Equal ( t , expectedTeam , teamID )
assert . Equal ( t , expectedHostIDs , hostIDs )
return nil
}
require . NoError ( t , svc . AddHostsToTeamByFilter ( test . UserContext ( test . UserAdmin ) , expectedTeam , fleet . HostListOptions { } , nil ) )
assert . True ( t , ds . ListHostsFuncInvoked )
assert . True ( t , ds . AddHostsToTeamFuncInvoked )
}
func TestAddHostsToTeamByFilterLabel ( t * testing . T ) {
ds := new ( mock . Store )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-12-14 21:34:11 +00:00
expectedHostIDs := [ ] uint { 6 }
expectedTeam := ptr . Uint ( 1 )
expectedLabel := ptr . Uint ( 2 )
ds . ListHostsInLabelFunc = func ( ctx context . Context , filter fleet . TeamFilter , lid uint , opt fleet . HostListOptions ) ( [ ] * fleet . Host , error ) {
assert . Equal ( t , * expectedLabel , lid )
var hosts [ ] * fleet . Host
for _ , id := range expectedHostIDs {
hosts = append ( hosts , & fleet . Host { ID : id } )
}
return hosts , nil
}
ds . AddHostsToTeamFunc = func ( ctx context . Context , teamID * uint , hostIDs [ ] uint ) error {
assert . Equal ( t , expectedHostIDs , hostIDs )
return nil
}
require . NoError ( t , svc . AddHostsToTeamByFilter ( test . UserContext ( test . UserAdmin ) , expectedTeam , fleet . HostListOptions { } , expectedLabel ) )
assert . True ( t , ds . ListHostsInLabelFuncInvoked )
assert . True ( t , ds . AddHostsToTeamFuncInvoked )
}
func TestAddHostsToTeamByFilterEmptyHosts ( t * testing . T ) {
ds := new ( mock . Store )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-12-14 21:34:11 +00:00
ds . ListHostsFunc = func ( ctx context . Context , filter fleet . TeamFilter , opt fleet . HostListOptions ) ( [ ] * fleet . Host , error ) {
return [ ] * fleet . Host { } , nil
}
ds . AddHostsToTeamFunc = func ( ctx context . Context , teamID * uint , hostIDs [ ] uint ) error {
return nil
}
require . NoError ( t , svc . AddHostsToTeamByFilter ( test . UserContext ( test . UserAdmin ) , nil , fleet . HostListOptions { } , nil ) )
assert . True ( t , ds . ListHostsFuncInvoked )
assert . False ( t , ds . AddHostsToTeamFuncInvoked )
}
func TestRefetchHost ( t * testing . T ) {
ds := new ( mock . Store )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-12-14 21:34:11 +00:00
host := & fleet . Host { ID : 3 }
2022-01-18 01:52:09 +00:00
ds . HostLiteFunc = func ( ctx context . Context , id uint ) ( * fleet . Host , error ) {
2021-12-14 21:34:11 +00:00
return host , nil
}
2022-01-18 01:52:09 +00:00
ds . UpdateHostRefetchRequestedFunc = func ( ctx context . Context , id uint , value bool ) error {
assert . Equal ( t , host . ID , id )
assert . True ( t , value )
2021-12-14 21:34:11 +00:00
return nil
}
require . NoError ( t , svc . RefetchHost ( test . UserContext ( test . UserAdmin ) , host . ID ) )
require . NoError ( t , svc . RefetchHost ( test . UserContext ( test . UserObserver ) , host . ID ) )
require . NoError ( t , svc . RefetchHost ( test . UserContext ( test . UserMaintainer ) , host . ID ) )
2022-01-18 01:52:09 +00:00
assert . True ( t , ds . HostLiteFuncInvoked )
assert . True ( t , ds . UpdateHostRefetchRequestedFuncInvoked )
2021-12-14 21:34:11 +00:00
}
func TestRefetchHostUserInTeams ( t * testing . T ) {
ds := new ( mock . Store )
2022-03-11 15:51:12 +00:00
svc := newTestService ( t , ds , nil , nil )
2021-12-14 21:34:11 +00:00
host := & fleet . Host { ID : 3 , TeamID : ptr . Uint ( 4 ) }
2022-01-18 01:52:09 +00:00
ds . HostLiteFunc = func ( ctx context . Context , id uint ) ( * fleet . Host , error ) {
2021-12-14 21:34:11 +00:00
return host , nil
}
2022-01-18 01:52:09 +00:00
ds . UpdateHostRefetchRequestedFunc = func ( ctx context . Context , id uint , value bool ) error {
assert . Equal ( t , host . ID , id )
assert . True ( t , value )
2021-12-14 21:34:11 +00:00
return nil
}
maintainer := & fleet . User {
Teams : [ ] fleet . UserTeam {
{
Team : fleet . Team { ID : 4 } ,
Role : fleet . RoleMaintainer ,
} ,
} ,
}
require . NoError ( t , svc . RefetchHost ( test . UserContext ( maintainer ) , host . ID ) )
2022-01-18 01:52:09 +00:00
assert . True ( t , ds . HostLiteFuncInvoked )
assert . True ( t , ds . UpdateHostRefetchRequestedFuncInvoked )
ds . HostLiteFuncInvoked , ds . UpdateHostRefetchRequestedFuncInvoked = false , false
2021-12-14 21:34:11 +00:00
observer := & fleet . User {
Teams : [ ] fleet . UserTeam {
{
Team : fleet . Team { ID : 4 } ,
Role : fleet . RoleObserver ,
} ,
} ,
}
require . NoError ( t , svc . RefetchHost ( test . UserContext ( observer ) , host . ID ) )
2022-01-18 01:52:09 +00:00
assert . True ( t , ds . HostLiteFuncInvoked )
assert . True ( t , ds . UpdateHostRefetchRequestedFuncInvoked )
2021-12-14 21:34:11 +00:00
}
2022-04-18 21:19:58 +00:00
func TestEmptyTeamOSVersions ( t * testing . T ) {
ds := new ( mock . Store )
svc := newTestService ( t , ds , nil , nil )
testVersions := [ ] fleet . OSVersion { { HostsCount : 1 , Name : "macOS 12.1" , Platform : "darwin" } }
ds . TeamFunc = func ( ctx context . Context , teamID uint ) ( * fleet . Team , error ) {
if teamID == 1 {
return & fleet . Team {
Name : "team1" ,
} , nil
}
if teamID == 2 {
return & fleet . Team {
Name : "team2" ,
} , nil
}
return nil , notFoundError { }
}
2022-08-12 19:23:25 +00:00
ds . OSVersionsFunc = func ( ctx context . Context , teamID * uint , platform * string , osID * uint ) ( * fleet . OSVersions , error ) {
2022-04-18 21:19:58 +00:00
if * teamID == 1 {
return & fleet . OSVersions { CountsUpdatedAt : time . Now ( ) , OSVersions : testVersions } , nil
}
if * teamID == 4 {
2022-06-10 21:52:24 +00:00
return nil , errors . New ( "some unknown error" )
2022-04-18 21:19:58 +00:00
}
return nil , notFoundError { }
}
// team exists with stats
2022-08-12 19:23:25 +00:00
vers , err := svc . OSVersions ( test . UserContext ( test . UserAdmin ) , ptr . Uint ( 1 ) , ptr . String ( "darwin" ) , nil )
2022-04-18 21:19:58 +00:00
require . NoError ( t , err )
assert . Len ( t , vers . OSVersions , 1 )
// team exists but no stats
2022-08-12 19:23:25 +00:00
vers , err = svc . OSVersions ( test . UserContext ( test . UserAdmin ) , ptr . Uint ( 2 ) , ptr . String ( "darwin" ) , nil )
2022-04-18 21:19:58 +00:00
require . NoError ( t , err )
assert . Empty ( t , vers . OSVersions )
// team does not exist
2022-08-12 19:23:25 +00:00
_ , err = svc . OSVersions ( test . UserContext ( test . UserAdmin ) , ptr . Uint ( 3 ) , ptr . String ( "darwin" ) , nil )
2022-04-18 21:19:58 +00:00
require . Error ( t , err )
require . Equal ( t , "not found" , fmt . Sprint ( err ) )
// some unknown error
2022-08-12 19:23:25 +00:00
_ , err = svc . OSVersions ( test . UserContext ( test . UserAdmin ) , ptr . Uint ( 4 ) , ptr . String ( "darwin" ) , nil )
2022-04-18 21:19:58 +00:00
require . Error ( t , err )
require . Equal ( t , "some unknown error" , fmt . Sprint ( err ) )
}