Skip to content

Commit b042fa6

Browse files
authored
Merge pull request #4 from privateerproj/SDK-0.0.5
Overhauled the wireframe raid to incorporate changes introduced by SDK v0.0.5
2 parents fbb9475 + 39729a0 commit b042fa6

File tree

9 files changed

+207
-65
lines changed

9 files changed

+207
-65
lines changed

cmd/debug.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ package cmd
33
import (
44
"log"
55

6-
"github.com/spf13/cobra"
7-
86
"github.com/privateerproj/privateer-sdk/raidengine"
7+
"github.com/spf13/cobra"
98
)
109

1110
var (
@@ -14,7 +13,7 @@ var (
1413
Use: "debug",
1514
Short: "Run the Raid in debug mode",
1615
Run: func(cmd *cobra.Command, args []string) {
17-
err := raidengine.Run(RaidName, getStrikes())
16+
err := raidengine.Run(RaidName, AvailableStrikes, Strikes)
1817
if err != nil {
1918
log.Fatal(err)
2019
}

cmd/root.go

+16-30
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
package cmd
22

33
import (
4-
"fmt"
54
"os"
65

76
"github.com/spf13/cobra"
8-
"github.com/spf13/viper"
97

8+
"github.com/privateerproj/privateer-pack-wireframe/strikes"
109
"github.com/privateerproj/privateer-sdk/command"
1110
"github.com/privateerproj/privateer-sdk/plugin"
1211
"github.com/privateerproj/privateer-sdk/raidengine"
13-
14-
"github.com/privateerproj/privateer-pack-wireframe/strikes"
1512
)
1613

1714
var (
@@ -21,6 +18,20 @@ var (
2118
buildTime string
2219

2320
RaidName = "Wireframe" // TODO: Change this to the name of your Raid
21+
Strikes = &strikes.Antijokes{}
22+
23+
AvailableStrikes = map[string][]raidengine.Strike{
24+
"CCC-Taxonomy": {
25+
Strikes.KnockKnock,
26+
Strikes.ChickenCrossedRoad,
27+
},
28+
"CCC-Hardening": {
29+
Strikes.ChickenCrossedRoad,
30+
},
31+
"CIS": {
32+
Strikes.ChickenCrossedRoad,
33+
},
34+
}
2435

2536
// runCmd represents the base command when called without any subcommands
2637
runCmd = &cobra.Command{
@@ -56,7 +67,6 @@ func Execute(version, commitHash, builtAt string) {
5667

5768
func init() {
5869
command.SetBase(runCmd) // This initializes the base CLI functionality
59-
viper.BindPFlag("raids.wireframe.tactic", runCmd.PersistentFlags().Lookup("tactic"))
6070
}
6171

6272
// Raid meets the Privateer Service Pack interface
@@ -73,29 +83,5 @@ func cleanupFunc() error {
7383
// Adding raidengine.SetupCloseHandler(cleanupFunc) will allow you to append custom cleanup behavior
7484
func (r *Raid) Start() error {
7585
raidengine.SetupCloseHandler(cleanupFunc)
76-
return raidengine.Run(RaidName, getStrikes()) // Return errors from strike executions
77-
}
78-
79-
// GetStrikes returns a list of probe objects
80-
func getStrikes() []raidengine.Strike {
81-
logger := raidengine.GetLogger(RaidName, false)
82-
a := &strikes.Antijokes{
83-
Log: logger,
84-
}
85-
availableStrikes := map[string][]raidengine.Strike{
86-
"CCC-Taxonomy": {
87-
a.KnockKnock,
88-
},
89-
"CIS": {
90-
a.KnockKnock,
91-
a.ChickenCrossedRoad,
92-
},
93-
}
94-
tactic := viper.GetString("raids.wireframe.tactic")
95-
strikes := availableStrikes[tactic]
96-
if len(strikes) == 0 {
97-
message := fmt.Sprintf("No strikes were found for the provided strike set: %s", tactic)
98-
logger.Error(message)
99-
}
100-
return strikes
86+
return raidengine.Run(RaidName, AvailableStrikes, Strikes)
10187
}

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.14
44

55
require (
66
github.com/hashicorp/go-hclog v1.2.0
7-
github.com/privateerproj/privateer-sdk v0.0.4
7+
github.com/privateerproj/privateer-sdk v0.0.5
88
github.com/spf13/cobra v1.4.0
99
github.com/spf13/viper v1.15.0
1010
)

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -671,8 +671,8 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
671671
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
672672
github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI=
673673
github.com/posener/complete v1.2.3/go.mod h1:WZIdtGGp+qx0sLrYKtIRAruyNpv6hFCicSgv7Sy7s/s=
674-
github.com/privateerproj/privateer-sdk v0.0.3 h1:lQ+pC5H3K+Pq69zHMO1WvFV2yrcCiM94KdNugVYbS2A=
675-
github.com/privateerproj/privateer-sdk v0.0.3/go.mod h1:wLc/yv9UDFXR9kZ0ioXpCOdWhm4hTSK3VqMEziJqMo4=
674+
github.com/privateerproj/privateer-sdk v0.0.5 h1:GEgAIxUxRGNlXT0jNkV0tVZxKGvYYhaHA3HOM955WME=
675+
github.com/privateerproj/privateer-sdk v0.0.5/go.mod h1:wLc/yv9UDFXR9kZ0ioXpCOdWhm4hTSK3VqMEziJqMo4=
676676
github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
677677
github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=
678678
github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU=
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"RaidName":"Wireframe-CCC-Taxonomy","StartTime":"2023-10-17 21:48:24.021963 -0500 CDT m=+0.008949251","EndTime":"2023-10-17 21:48:24.02247 -0500 CDT m=+0.009455792","StrikeResults":{"Chicken Crossed Road":{"Passed":true,"Description":"This is a demo strike for dev purposes","Message":"We tried, and that's all we really came here for.","DocsURL":"https://maintainer.com/docs/raids/wireframe","ControlID":"CCC-Taxonomy-2","Movements":{"JokerName":{"Passed":true,"Description":"JokerName must be found in the runtime configuration.","Message":"JokerName is set","Function":"github.com/privateerproj/privateer-pack-wireframe/strikes.getJokerName","Value":"Dean"}}},"Knock Knock":{"Passed":false,"Description":"This is a failure of a joke for dev purposes","Message":"Strike has not yet started.","DocsURL":"https://maintainer.com/docs/raids/wireframe","ControlID":"CCC-Taxonomy-1","Movements":{"JokeeName":{"Passed":true,"Description":"JokeeName must be found in the runtime configuration.","Message":"JokeeName is set","Function":"github.com/privateerproj/privateer-pack-wireframe/strikes.getJokeeName","Value":"Sam"},"JokerName":{"Passed":true,"Description":"JokerName must be found in the runtime configuration.","Message":"JokerName is set","Function":"github.com/privateerproj/privateer-pack-wireframe/strikes.getJokerName","Value":"Dean"},"knock knock":{"Passed":true,"Description":"Joke must be started by the joker.","Message":"Dean: Knock knock.","Function":"github.com/privateerproj/privateer-pack-wireframe/strikes.RunKnockKnock","Value":null},"punchline":{"Passed":true,"Description":"Jokee must respond with the punchline.","Message":"Dean: Sam","Function":"github.com/privateerproj/privateer-pack-wireframe/strikes.RunKnockKnock","Value":null},"who's there":{"Passed":true,"Description":"Jokee must respond with 'who's there?'","Message":"Sam: Who's there?","Function":"github.com/privateerproj/privateer-pack-wireframe/strikes.RunKnockKnock","Value":null}}}}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
raidname: Wireframe-CCC-Taxonomy
2+
starttime: 2023-10-17 21:48:24.021963 -0500 CDT m=+0.008949251
3+
endtime: 2023-10-17 21:48:24.02247 -0500 CDT m=+0.009455792
4+
strikeresults:
5+
Chicken Crossed Road:
6+
passed: true
7+
description: This is a demo strike for dev purposes
8+
message: We tried, and that's all we really came here for.
9+
docsurl: https://maintainer.com/docs/raids/wireframe
10+
controlid: CCC-Taxonomy-2
11+
movements:
12+
JokerName:
13+
passed: true
14+
description: JokerName must be found in the runtime configuration.
15+
message: JokerName is set
16+
function: github.com/privateerproj/privateer-pack-wireframe/strikes.getJokerName
17+
value: Dean
18+
Knock Knock:
19+
passed: false
20+
description: This is a failure of a joke for dev purposes
21+
message: Strike has not yet started.
22+
docsurl: https://maintainer.com/docs/raids/wireframe
23+
controlid: CCC-Taxonomy-1
24+
movements:
25+
JokeeName:
26+
passed: true
27+
description: JokeeName must be found in the runtime configuration.
28+
message: JokeeName is set
29+
function: github.com/privateerproj/privateer-pack-wireframe/strikes.getJokeeName
30+
value: Sam
31+
JokerName:
32+
passed: true
33+
description: JokerName must be found in the runtime configuration.
34+
message: JokerName is set
35+
function: github.com/privateerproj/privateer-pack-wireframe/strikes.getJokerName
36+
value: Dean
37+
knock knock:
38+
passed: true
39+
description: Joke must be started by the joker.
40+
message: 'Dean: Knock knock.'
41+
function: github.com/privateerproj/privateer-pack-wireframe/strikes.RunKnockKnock
42+
value: null
43+
punchline:
44+
passed: true
45+
description: Jokee must respond with the punchline.
46+
message: 'Dean: Sam'
47+
function: github.com/privateerproj/privateer-pack-wireframe/strikes.RunKnockKnock
48+
value: null
49+
who's there:
50+
passed: true
51+
description: Jokee must respond with 'who's there?'
52+
message: 'Sam: Who''s there?'
53+
function: github.com/privateerproj/privateer-pack-wireframe/strikes.RunKnockKnock
54+
value: null
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"RaidName":"Wireframe-CIS","StartTime":"2023-10-17 21:48:24.023261 -0500 CDT m=+0.010247459","EndTime":"2023-10-17 21:48:24.023339 -0500 CDT m=+0.010325209","StrikeResults":{"Chicken Crossed Road":{"Passed":true,"Description":"This is a demo strike for dev purposes","Message":"We tried, and that's all we really came here for.","DocsURL":"https://maintainer.com/docs/raids/wireframe","ControlID":"CIS-1","Movements":{"JokerName":{"Passed":true,"Description":"JokerName must be found in the runtime configuration.","Message":"JokerName is set","Function":"github.com/privateerproj/privateer-pack-wireframe/strikes.getJokerName","Value":"Dean"}}}}}
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
raidname: Wireframe-CIS
2+
starttime: 2023-10-17 21:48:24.023261 -0500 CDT m=+0.010247459
3+
endtime: 2023-10-17 21:48:24.023339 -0500 CDT m=+0.010325209
4+
strikeresults:
5+
Chicken Crossed Road:
6+
passed: true
7+
description: This is a demo strike for dev purposes
8+
message: We tried, and that's all we really came here for.
9+
docsurl: https://maintainer.com/docs/raids/wireframe
10+
controlid: CIS-1
11+
movements:
12+
JokerName:
13+
passed: true
14+
description: JokerName must be found in the runtime configuration.
15+
message: JokerName is set
16+
function: github.com/privateerproj/privateer-pack-wireframe/strikes.getJokerName
17+
value: Dean

strikes/antijokes.go

+113-29
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,152 @@
11
package strikes
22

33
import (
4-
"errors"
54
"fmt"
65
"log"
76

87
hclog "github.com/hashicorp/go-hclog"
98
"github.com/spf13/viper"
109

1110
"github.com/privateerproj/privateer-sdk/raidengine"
11+
"github.com/privateerproj/privateer-sdk/utils"
1212
)
1313

1414
type Antijokes struct {
15-
Log hclog.Logger
15+
Log hclog.Logger // Recommended, allows you to set the log level for each log message
16+
Results map[string]raidengine.StrikeResult // Optional, allows cross referencing between strikes
17+
}
18+
19+
func (a *Antijokes) SetLogger(loggerName string) {
20+
a.Log = raidengine.GetLogger(loggerName, false)
1621
}
1722

1823
// KnockKnock is a demo test for dev purposes
1924
func (a *Antijokes) KnockKnock() (strikeName string, result raidengine.StrikeResult) {
2025
strikeName = "Knock Knock"
26+
log.Print(strikeName) // Default logs will be set as INFO
27+
2128
result = raidengine.StrikeResult{
22-
Passed: false,
23-
Message: "",
24-
DocsURL: "",
29+
Passed: false,
30+
Description: "This is a failure of a joke for dev purposes",
31+
Message: "Strike has not yet started.",
32+
DocsURL: "https://maintainer.com/docs/raids/wireframe",
33+
ControlID: "CCC-Taxonomy-1",
34+
Movements: make(map[string]raidengine.MovementResult),
2535
}
26-
log.Printf("Knock Knock")
27-
name, err := getJokeName()
28-
if err != nil {
36+
37+
// run getJokerName() as a movement
38+
jokerNameMovement := getJokerName()
39+
result.Movements["JokerName"] = jokerNameMovement
40+
if !jokerNameMovement.Passed {
41+
result.Message = jokerNameMovement.Message
2942
return
3043
}
31-
log.Printf("Me: Knock Knock")
32-
log.Printf(fmt.Sprintf("%s: Who's There?", name))
33-
// Demo the log timestamp
34-
for i := 1; i < 5000000; i++ {
35-
if i%500000 == 0 {
36-
log.Printf("Me: (stares at %s)", name)
37-
}
44+
45+
// run getJokeeName() as a movement
46+
jokeeNameMovement := getJokeeName()
47+
result.Movements["JokeeName"] = jokeeNameMovement
48+
if !jokeeNameMovement.Passed {
49+
result.Message = jokeeNameMovement.Message
50+
return
3851
}
39-
log.Printf(fmt.Sprintf("%s: (lost interest and left)", name))
52+
53+
// Run multiple movements at once by passing the result object as a pointer
54+
// Previous movement values must be cast to their type from interface{} before being used again
55+
RunKnockKnock(jokerNameMovement.Value.(string), jokeeNameMovement.Value.(string), &result)
4056
return
4157
}
4258

4359
// ChickenCrossedRoad is a demo test for dev purposes
4460
func (a *Antijokes) ChickenCrossedRoad() (strikeName string, result raidengine.StrikeResult) {
61+
// If a strike is part of multiple tactics, you can use a map to reference the control ID to the selected tactic
62+
controlIDs := map[string]string{
63+
"CCC-Taxonomy": "CCC-Taxonomy-2",
64+
"CCC-Hardening": "CCC-Hardening-1",
65+
"CIS": "CIS-1",
66+
}
4567
strikeName = "Chicken Crossed Road"
4668
result = raidengine.StrikeResult{
47-
Passed: true,
48-
Message: "",
49-
DocsURL: "",
69+
Passed: false,
70+
Description: "This is a demo strike for dev purposes",
71+
Message: "Strike has not yet started.",
72+
DocsURL: "https://maintainer.com/docs/raids/wireframe",
73+
ControlID: controlIDs[viper.GetString("raids.wireframe.tactic")],
74+
Movements: make(map[string]raidengine.MovementResult),
5075
}
5176

52-
name, err := getJokeName()
53-
if err != nil {
77+
jokerNameMovement := getJokerName()
78+
result.Movements["JokerName"] = jokerNameMovement
79+
if !jokerNameMovement.Passed {
80+
result.Message = jokerNameMovement.Message
5481
return
5582
}
56-
a.Log.Warn("Me: This joke may offend someone.")
57-
a.Log.Info("Me: Why did the chicken cross the road?")
58-
a.Log.Trace(fmt.Sprintf("Me: (looks to see what %s's expression is)", name))
59-
a.Log.Info(fmt.Sprintf("%s: I'm busy, leave me alone.", name))
83+
84+
// Using an hclog logger will allow you to set the log level for each message
85+
a.Log.Warn(fmt.Sprintf("%s: This joke may offend someone.", jokerNameMovement.Value))
86+
a.Log.Info(fmt.Sprintf("%s: Why did the chicken cross the road?", jokerNameMovement.Value))
87+
a.Log.Trace(fmt.Sprintf("%s: (looks to see what the stranger's expression is)", jokerNameMovement.Value))
88+
a.Log.Info("Stranger: I'm busy, leave me alone.")
89+
90+
result.Passed = true
91+
result.Message = "We tried, and that's all we really came here for."
92+
return
93+
}
94+
95+
// getJokerName is a common movement for the strikes in this raid
96+
func getJokerName() (result raidengine.MovementResult) {
97+
result = raidengine.MovementResult{
98+
Description: "JokerName must be found in the runtime configuration.",
99+
Function: utils.CallerPath(0),
100+
}
101+
if viper.IsSet("raids.wireframe.JokerName") {
102+
result.Passed = true
103+
result.Message = "JokerName is set"
104+
result.Value = viper.GetString("raids.wireframe.JokerName")
105+
} else {
106+
result.Passed = false
107+
result.Message = "JokerName must be set in the configuration."
108+
}
60109
return
61110
}
62111

63-
func getJokeName() (string, error) {
64-
if viper.IsSet("raids.wireframe.jokename") {
65-
return viper.GetString("raids.wireframe.jokename"), nil
112+
// getJokerName is a common movement for the strikes in this raid
113+
func getJokeeName() (result raidengine.MovementResult) {
114+
result = raidengine.MovementResult{
115+
Description: "JokeeName must be found in the runtime configuration.",
116+
Function: utils.CallerPath(0),
117+
}
118+
if viper.IsSet("raids.wireframe.JokeeName") {
119+
result.Passed = true
120+
result.Message = "JokeeName is set"
121+
result.Value = viper.GetString("raids.wireframe.JokeeName")
122+
} else {
123+
result.Passed = false
124+
result.Message = "JokeeName must be set in the configuration."
125+
}
126+
return
127+
}
128+
129+
// RunKnockKnock is a set of movements for the Knock Knock strike, with each movement being added to the provided result
130+
func RunKnockKnock(jokerName, jokeeName string, result *raidengine.StrikeResult) {
131+
// say knock knock
132+
result.Movements["knock knock"] = raidengine.MovementResult{
133+
Passed: true,
134+
Description: "Joke must be started by the joker.",
135+
Message: fmt.Sprintf("%s: Knock knock.", jokerName),
136+
Function: utils.CallerPath(0),
137+
}
138+
// say who's there
139+
result.Movements["who's there"] = raidengine.MovementResult{
140+
Passed: true,
141+
Description: "Jokee must respond with 'who's there?'",
142+
Message: fmt.Sprintf("%s: Who's there?", jokeeName),
143+
Function: utils.CallerPath(0),
144+
}
145+
// say punchline
146+
result.Movements["punchline"] = raidengine.MovementResult{
147+
Passed: true,
148+
Description: "Jokee must respond with the punchline.",
149+
Message: fmt.Sprintf("%s: %s", jokerName, jokeeName),
150+
Function: utils.CallerPath(0),
66151
}
67-
return "", errors.New("JokeName must be set in the config file or env vars (PVTR_WIREFRAME_JOKE_NAME)")
68152
}

0 commit comments

Comments
 (0)