2017-07-19 12:14:03 +00:00
|
|
|
/*
|
2022-05-31 19:23:39 +00:00
|
|
|
Copyright 2022 GitHub Inc.
|
2017-07-19 12:14:03 +00:00
|
|
|
See https://github.com/github/gh-ost/blob/master/LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
package base
|
|
|
|
|
|
|
|
import (
|
2021-06-24 18:19:37 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2017-07-19 12:14:03 +00:00
|
|
|
"testing"
|
2017-07-19 12:22:46 +00:00
|
|
|
"time"
|
2017-07-19 12:14:03 +00:00
|
|
|
|
2021-06-24 18:19:37 +00:00
|
|
|
"github.com/openark/golib/log"
|
|
|
|
test "github.com/openark/golib/tests"
|
2017-07-19 12:14:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
log.SetLevel(log.ERROR)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetTableNames(t *testing.T) {
|
|
|
|
{
|
2017-08-08 20:36:54 +00:00
|
|
|
context := NewMigrationContext()
|
2017-07-19 12:14:03 +00:00
|
|
|
context.OriginalTableName = "some_table"
|
|
|
|
test.S(t).ExpectEquals(context.GetOldTableName(), "_some_table_del")
|
|
|
|
test.S(t).ExpectEquals(context.GetGhostTableName(), "_some_table_gho")
|
|
|
|
test.S(t).ExpectEquals(context.GetChangelogTableName(), "_some_table_ghc")
|
|
|
|
}
|
|
|
|
{
|
2017-08-08 20:36:54 +00:00
|
|
|
context := NewMigrationContext()
|
2017-07-19 12:14:03 +00:00
|
|
|
context.OriginalTableName = "a123456789012345678901234567890123456789012345678901234567890"
|
|
|
|
test.S(t).ExpectEquals(context.GetOldTableName(), "_a1234567890123456789012345678901234567890123456789012345678_del")
|
|
|
|
test.S(t).ExpectEquals(context.GetGhostTableName(), "_a1234567890123456789012345678901234567890123456789012345678_gho")
|
|
|
|
test.S(t).ExpectEquals(context.GetChangelogTableName(), "_a1234567890123456789012345678901234567890123456789012345678_ghc")
|
|
|
|
}
|
|
|
|
{
|
2017-08-08 20:36:54 +00:00
|
|
|
context := NewMigrationContext()
|
2017-07-19 12:14:03 +00:00
|
|
|
context.OriginalTableName = "a123456789012345678901234567890123456789012345678901234567890123"
|
|
|
|
oldTableName := context.GetOldTableName()
|
|
|
|
test.S(t).ExpectEquals(oldTableName, "_a1234567890123456789012345678901234567890123456789012345678_del")
|
|
|
|
}
|
2017-07-19 12:22:46 +00:00
|
|
|
{
|
2017-08-08 20:36:54 +00:00
|
|
|
context := NewMigrationContext()
|
2017-07-19 12:22:46 +00:00
|
|
|
context.OriginalTableName = "a123456789012345678901234567890123456789012345678901234567890123"
|
|
|
|
context.TimestampOldTable = true
|
|
|
|
longForm := "Jan 2, 2006 at 3:04pm (MST)"
|
|
|
|
context.StartTime, _ = time.Parse(longForm, "Feb 3, 2013 at 7:54pm (PST)")
|
|
|
|
oldTableName := context.GetOldTableName()
|
|
|
|
test.S(t).ExpectEquals(oldTableName, "_a1234567890123456789012345678901234567890123_20130203195400_del")
|
|
|
|
}
|
2017-07-21 19:37:57 +00:00
|
|
|
{
|
2017-08-08 20:36:54 +00:00
|
|
|
context := NewMigrationContext()
|
2017-07-21 19:37:57 +00:00
|
|
|
context.OriginalTableName = "foo_bar_baz"
|
|
|
|
context.ForceTmpTableName = "tmp"
|
|
|
|
test.S(t).ExpectEquals(context.GetOldTableName(), "_tmp_del")
|
|
|
|
test.S(t).ExpectEquals(context.GetGhostTableName(), "_tmp_gho")
|
|
|
|
test.S(t).ExpectEquals(context.GetChangelogTableName(), "_tmp_ghc")
|
|
|
|
}
|
2017-07-19 12:14:03 +00:00
|
|
|
}
|
2021-06-24 18:19:37 +00:00
|
|
|
|
|
|
|
func TestReadConfigFile(t *testing.T) {
|
|
|
|
{
|
|
|
|
context := NewMigrationContext()
|
|
|
|
context.ConfigFile = "/does/not/exist"
|
|
|
|
if err := context.ReadConfigFile(); err == nil {
|
|
|
|
t.Fatal("Expected .ReadConfigFile() to return an error, got nil")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
f, err := ioutil.TempFile("", t.Name())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create tmp file: %v", err)
|
|
|
|
}
|
|
|
|
defer os.Remove(f.Name())
|
|
|
|
|
|
|
|
f.Write([]byte("[client]"))
|
|
|
|
context := NewMigrationContext()
|
|
|
|
context.ConfigFile = f.Name()
|
|
|
|
if err := context.ReadConfigFile(); err != nil {
|
|
|
|
t.Fatalf(".ReadConfigFile() failed: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
f, err := ioutil.TempFile("", t.Name())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create tmp file: %v", err)
|
|
|
|
}
|
|
|
|
defer os.Remove(f.Name())
|
|
|
|
|
2022-05-31 19:23:39 +00:00
|
|
|
f.Write([]byte("[client]\nuser=test\npassword=123456"))
|
2021-06-24 18:19:37 +00:00
|
|
|
context := NewMigrationContext()
|
|
|
|
context.ConfigFile = f.Name()
|
|
|
|
if err := context.ReadConfigFile(); err != nil {
|
|
|
|
t.Fatalf(".ReadConfigFile() failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if context.config.Client.User != "test" {
|
|
|
|
t.Fatalf("Expected client user %q, got %q", "test", context.config.Client.User)
|
|
|
|
} else if context.config.Client.Password != "123456" {
|
|
|
|
t.Fatalf("Expected client password %q, got %q", "123456", context.config.Client.Password)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{
|
|
|
|
f, err := ioutil.TempFile("", t.Name())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Failed to create tmp file: %v", err)
|
|
|
|
}
|
|
|
|
defer os.Remove(f.Name())
|
|
|
|
|
2022-05-31 19:23:39 +00:00
|
|
|
f.Write([]byte("[osc]\nmax_load=10"))
|
2021-06-24 18:19:37 +00:00
|
|
|
context := NewMigrationContext()
|
|
|
|
context.ConfigFile = f.Name()
|
|
|
|
if err := context.ReadConfigFile(); err != nil {
|
|
|
|
t.Fatalf(".ReadConfigFile() failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if context.config.Osc.Max_Load != "10" {
|
|
|
|
t.Fatalf("Expected osc 'max_load' %q, got %q", "10", context.config.Osc.Max_Load)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|