File size: 2,749 Bytes
1e92f2d |
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
package twilio
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"github.com/target/goalert/notification"
"github.com/target/goalert/notification/nfymsg"
)
func TestSpellNumber(t *testing.T) {
// Test the spell number function
assert.Equal(t, "1. 2. 3. 4. 5. 6", spellCode("123456"))
}
func TestBuildMessage(t *testing.T) {
prefix := "This is GoAlert"
// Test Notification
result, err := buildMessage(
prefix,
notification.Test{},
)
assert.Equal(t, fmt.Sprintf("%s with a test message.", prefix), result)
assert.NoError(t, err)
// AlertBundle Notification
result, err = buildMessage(
prefix,
notification.AlertBundle{
Base: nfymsg.Base{ID: "2"},
ServiceID: "3",
ServiceName: "Widget",
Count: 5,
},
)
assert.Equal(t, fmt.Sprintf("%s with alert notifications. Service 'Widget' has 5 unacknowledged alerts.", prefix), result)
assert.NoError(t, err)
// Alert Notification
result, err = buildMessage(
prefix,
notification.Alert{
Base: nfymsg.Base{ID: "2"},
AlertID: 3,
Summary: "Widget is Broken",
Details: "Oh No!",
},
)
assert.Equal(t, fmt.Sprintf("%s with an alert notification. Widget is Broken.", prefix), result)
assert.NoError(t, err)
// AlertStatus Notification
result, err = buildMessage(
prefix,
notification.AlertStatus{
Base: nfymsg.Base{ID: "2"},
AlertID: 3,
Summary: "Widget is Broken",
Details: "Oh No!",
LogEntry: "Something is Wrong",
},
)
assert.Equal(t, fmt.Sprintf("%s with a status update for alert 'Widget is Broken'. Something is Wrong", prefix), result)
assert.NoError(t, err)
// Verification Notification
result, err = buildMessage(
prefix,
notification.Verification{
Base: nfymsg.Base{ID: "2"},
Code: "1234",
},
)
assert.Equal(t, fmt.Sprintf("%s with your 4-digit verification code. The code is: %s. Again, your 4-digit verification code is: %s.", prefix, spellCode("1234"), spellCode("1234")), result)
assert.NoError(t, err)
// Bad Type
result, err = buildMessage(
prefix,
notification.ScheduleOnCallUsers{
Base: nfymsg.Base{ID: "2"},
ScheduleID: "3",
ScheduleName: "4",
ScheduleURL: "5",
},
)
assert.Empty(t, result)
assert.Error(t, err)
// Missing prefix
result, err = buildMessage(
"",
notification.Test{},
)
assert.Empty(t, result)
assert.Error(t, err)
// no input
result, err = buildMessage(
prefix,
nil,
)
assert.Empty(t, result)
assert.Error(t, err)
}
func BenchmarkBuildMessage(b *testing.B) {
for i := 0; i < b.N; i++ {
_, _ = buildMessage(
fmt.Sprintf("%d", i),
notification.Test{
Base: nfymsg.Base{
Dest: NewVoiceDest(fmt.Sprintf("+1612555123%d", i)),
ID: "2",
},
},
)
}
}
|