2017-04-12 08:27:57 -04:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2015-06-14 23:53:32 -08:00
|
|
|
// See License.txt for license information.
|
|
|
|
|
|
|
|
|
|
package manualtesting
|
|
|
|
|
|
|
|
|
|
import (
|
2016-01-11 09:12:51 -06:00
|
|
|
l4g "github.com/alecthomas/log4go"
|
2015-06-14 23:53:32 -08:00
|
|
|
"github.com/mattermost/platform/model"
|
2016-01-25 00:49:19 -03:00
|
|
|
"github.com/mattermost/platform/utils"
|
2017-08-25 11:04:37 +01:00
|
|
|
"net/http"
|
2015-06-14 23:53:32 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const LINK_POST_TEXT = `
|
|
|
|
|
Some Links:
|
|
|
|
|
https://spinpunch.atlassian.net/issues/?filter=10101&jql=resolution%20in%20(Fixed%2C%20%22Won't%20Fix%22%2C%20Duplicate%2C%20%22Cannot%20Reproduce%22)%20AND%20Resolution%20%3D%20Fixed%20AND%20updated%20%3E%3D%20-7d%20ORDER%20BY%20updatedDate%20DESC
|
|
|
|
|
|
|
|
|
|
https://www.google.com.pk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=2&cad=rja&uact=8&ved=0CCUQFjAB&url=https%3A%2F%2Fdevelopers.google.com%2Fmaps%2Fdocumentation%2Fios%2Furlscheme&ei=HBFbVdSBN-WcygOG4oHIBw&usg=AFQjCNGI0Jg92Y7qNmyIpQyvYPut7vx5-Q&bvm=bv.93564037,d.bGg
|
|
|
|
|
|
|
|
|
|
http://www.google.com.pk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&cad=rja&uact=8&ved=0CC8QFjAD&url=http%3A%2F%2Fwww.quora.com%2FHow-long-will-a-Google-shortened-URL-be-available&ei=XRBbVbPLGYKcsAGqiIDQAw&usg=AFQjCNHY0Xi-GG4hgbrPUY_8Kg-55_-DNQ&bvm=bv.93564037,d.bGg
|
|
|
|
|
|
|
|
|
|
https://medium.com/@slackhq/11-useful-tips-for-getting-the-most-of-slack-5dfb3d1af77
|
|
|
|
|
`
|
|
|
|
|
|
2015-10-30 12:42:26 -05:00
|
|
|
func testAutoLink(env TestEnvironment) *model.AppError {
|
2016-01-25 00:49:19 -03:00
|
|
|
l4g.Info(utils.T("manaultesting.test_autolink.info"))
|
2016-01-20 13:36:16 -06:00
|
|
|
channelID, err := getChannelID(model.DEFAULT_CHANNEL, env.CreatedTeamId, env.CreatedUserId)
|
2015-06-14 23:53:32 -08:00
|
|
|
if err != true {
|
2017-08-25 11:04:37 +01:00
|
|
|
return model.NewAppError("/manualtest", "manaultesting.test_autolink.unable.app_error", nil, "", http.StatusInternalServerError)
|
2015-06-14 23:53:32 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
post := &model.Post{
|
|
|
|
|
ChannelId: channelID,
|
|
|
|
|
Message: LINK_POST_TEXT}
|
|
|
|
|
_, err2 := env.Client.CreatePost(post)
|
|
|
|
|
if err2 != nil {
|
|
|
|
|
return err2
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|