-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathapp_usage_test.go
55 lines (51 loc) · 1.5 KB
/
app_usage_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package client
import (
"context"
"net/http"
"testing"
"github.com/cloudfoundry/go-cfclient/v3/testutil"
)
func TestAppUsages(t *testing.T) {
g := testutil.NewObjectJSONGenerator()
appUsage := g.AppUsage().JSON
appUsage2 := g.AppUsage().JSON
appUsage3 := g.AppUsage().JSON
tests := []RouteTest{
{
Description: "Get app usage event",
Route: testutil.MockRoute{
Method: "GET",
Endpoint: "/v3/app_usage_events/af846b67-e0c4-44eb-bfa8-ff30e902d710",
Output: g.Single(appUsage),
Status: http.StatusOK},
Expected: appUsage,
Action: func(c *Client, t *testing.T) (any, error) {
return c.AppUsageEvents.Get(context.Background(), "af846b67-e0c4-44eb-bfa8-ff30e902d710")
},
},
{
Description: "List all app usage events",
Route: testutil.MockRoute{
Method: "GET",
Endpoint: "/v3/app_usage_events",
Output: g.Paged([]string{appUsage, appUsage2}, []string{appUsage3}),
Status: http.StatusOK},
Expected: g.Array(appUsage, appUsage2, appUsage3),
Action: func(c *Client, t *testing.T) (any, error) {
return c.AppUsageEvents.ListAll(context.Background(), nil)
},
},
{
Description: "Purge all app usage events",
Route: testutil.MockRoute{
Method: "POST",
Endpoint: "/v3/app_usage_events/actions/destructively_purge_all_and_reseed",
Status: http.StatusOK},
Action: func(c *Client, t *testing.T) (any, error) {
err := c.AppUsageEvents.Purge(context.Background())
return nil, err
},
},
}
ExecuteTests(tests, t)
}