summaryrefslogtreecommitdiffstats
path: root/app/elasticsearch.go
blob: 87687ddcc4686ee81557e9f49a260188edd20ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package app

import (
	"net/http"

	"github.com/mattermost/platform/model"
	"github.com/mattermost/platform/einterfaces"
)

func TestElasticsearch() *model.AppError {
	if esI := einterfaces.GetElasticsearchInterface(); esI != nil {
		if err := esI.TestConfig(); err != nil {
			return err
		}
	} else {
		err := model.NewAppError("TestElasticsearch", "ent.elasticsearch.test_config.license.error", nil, "", http.StatusNotImplemented)
		return err
	}

	return nil
}