File: workflow_step_execute_test.go

package info (click to toggle)
golang-github-slack-go-slack 0.11.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 1,720 kB
  • sloc: makefile: 54
file content (35 lines) | stat: -rw-r--r-- 908 bytes parent folder | download
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
package slack

import (
	"encoding/json"
	"net/http"
	"testing"
)

func workflowStepHandler(rw http.ResponseWriter, r *http.Request) {
	rw.Header().Set("Content-Type", "application/json")
	response, _ := json.Marshal(SlackResponse{
		Ok: true,
	})
	rw.Write(response)
}

func TestWorkflowStepCompleted(t *testing.T) {
	http.HandleFunc("/workflows.stepCompleted", workflowStepHandler)
	once.Do(startServer)
	api := New("testing-token", OptionAPIURL("http://"+serverAddr+"/"))

	if err := api.WorkflowStepCompleted("executeID"); err != nil {
		t.Errorf("Unexpected error: %s", err)
	}
}

func TestWorkflowStepFailed(t *testing.T) {
	http.HandleFunc("/workflows.stepFailed", workflowStepHandler)
	once.Do(startServer)
	api := New("testing-token", OptionAPIURL("http://"+serverAddr+"/"))

	if err := api.WorkflowStepFailed("executeID", "error message"); err != nil {
		t.Errorf("Unexpected error: %s", err)
	}
}