statping/core/core_test.go

98 lines
2.2 KiB
Go
Raw Normal View History

2018-08-16 06:22:20 +00:00
// Statup
// Copyright (C) 2018. Hunter Long and the project contributors
// Written by Hunter Long <info@socialeck.com> and the project contributors
//
// https://github.com/hunterlong/statup
//
// The licenses for most software and other practical works are designed
// to take away your freedom to share and change the works. By contrast,
// the GNU General Public License is intended to guarantee your freedom to
// share and change all versions of a program--to make sure it remains free
// software for all its users.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package core
import (
2018-08-10 04:38:54 +00:00
"github.com/hunterlong/statup/source"
2018-08-19 09:16:15 +00:00
"github.com/hunterlong/statup/types"
2018-07-27 04:45:42 +00:00
"github.com/hunterlong/statup/utils"
"github.com/stretchr/testify/assert"
"testing"
)
var (
2018-07-28 01:50:13 +00:00
testCore *Core
testConfig *DbConfig
2018-08-10 04:38:54 +00:00
dir string
)
2018-07-27 04:45:42 +00:00
func init() {
2018-08-10 04:38:54 +00:00
dir = utils.Directory
2018-07-27 04:45:42 +00:00
utils.InitLogs()
2018-08-10 04:38:54 +00:00
source.Assets()
2018-07-27 04:45:42 +00:00
}
func TestNewCore(t *testing.T) {
testCore = NewCore()
assert.NotNil(t, testCore)
2018-07-27 04:45:42 +00:00
testCore.Name = "Tester"
}
func TestDbConfig_Save(t *testing.T) {
2018-08-19 20:07:32 +00:00
testConfig = &DbConfig{&types.DbConfig{
2018-07-27 04:45:42 +00:00
DbConn: "sqlite",
Project: "Tester",
2018-08-10 04:38:54 +00:00
Location: dir,
2018-08-19 09:16:15 +00:00
}}
2018-07-27 04:45:42 +00:00
err := testConfig.Save()
assert.Nil(t, err)
}
func TestDbConnection(t *testing.T) {
2018-08-10 04:38:54 +00:00
err := DbConnection(testConfig.DbConn, false, dir)
2018-07-27 04:45:42 +00:00
assert.Nil(t, err)
}
func TestCreateDatabase(t *testing.T) {
err := CreateDatabase()
assert.Nil(t, err)
}
func TestInsertCore(t *testing.T) {
err := InsertCore(testCore)
assert.Nil(t, err)
}
func TestSelectCore(t *testing.T) {
core, err := SelectCore()
assert.Nil(t, err)
assert.Equal(t, "Tester", core.Name)
}
func TestSampleData(t *testing.T) {
err := LoadSampleData()
assert.Nil(t, err)
}
func TestSelectLastMigration(t *testing.T) {
id, err := SelectLastMigration()
assert.Nil(t, err)
assert.NotZero(t, id)
}
func TestInsertNotifierDB(t *testing.T) {
err := InsertNotifierDB()
assert.Nil(t, err)
}
func TestExportStaticHTML(t *testing.T) {
2018-08-21 06:54:39 +00:00
t.SkipNow()
data := ExportIndexHTML()
assert.Contains(t, data, "Statup made with ❤️")
assert.Contains(t, data, "</body>")
assert.Contains(t, data, "</html>")
}