Fixing unit tests

This commit is contained in:
=Corey Hulen
2016-01-09 09:22:14 -06:00
parent b1a7c1acf1
commit 3edcf960a0
4 changed files with 8 additions and 12 deletions

View File

@@ -33,15 +33,6 @@ func GetCommandProvidersProvider(name string) CommandProvider {
return nil
}
// cmds = map[string]string{
// "logoutCommand": "/logout",
// "joinCommand": "/join",
// "loadTestCommand": "/loadtest",
// "echoCommand": "/echo",
// "shrugCommand": "/shrug",
// "meCommand": "/me",
// }
func InitCommand(r *mux.Router) {
l4g.Debug("Initializing command api routes")

View File

@@ -25,5 +25,10 @@ func (me *ShrugProvider) GetCommand() *model.Command {
}
func (me *ShrugProvider) DoCommand(c *Context, channelId string, message string) *model.CommandResponse {
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_IN_CHANNEL, Text: `¯\_(ツ)_/¯`}
rmsg := `¯\\\_(ツ)\_/¯`
if len(message) > 0 {
rmsg = message + " " + rmsg
}
return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_IN_CHANNEL, Text: rmsg}
}

View File

@@ -39,7 +39,7 @@ func TestShrugCommand(t *testing.T) {
if len(p1.Order) != 1 {
t.Fatal("Command failed to send")
} else {
if p1.Posts[p1.Order[0]].Message != `¯\_(ツ)_/¯` {
if p1.Posts[p1.Order[0]].Message != `¯\\\_(ツ)\_/¯` {
t.Log(p1.Posts[p1.Order[0]].Message)
t.Fatal("invalid shrug reponse")
}

View File

@@ -857,7 +857,7 @@ export function listCommands(success, error) {
url: '/api/v1/commands/list',
dataType: 'json',
contentType: 'application/json',
type: 'POST',
type: 'GET',
success,
error: function onError(xhr, status, err) {
var e = handleError('listCommands', xhr, status, err);