-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into add-alertMetadata
- Loading branch information
Showing
6 changed files
with
499 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
package migratetest | ||
|
||
import ( | ||
"bufio" | ||
"encoding/csv" | ||
"fmt" | ||
"io" | ||
"strings" | ||
) | ||
|
||
// CopyScanner will scan COPY statements, returning TableSnapshots. | ||
type CopyScanner struct { | ||
s *bufio.Scanner | ||
t TableSnapshot | ||
err error | ||
} | ||
|
||
// NewCopyScanner will return a new CopyScanner. | ||
func NewCopyScanner(r io.Reader) *CopyScanner { | ||
return &CopyScanner{s: bufio.NewScanner(r)} | ||
} | ||
|
||
func (d *CopyScanner) nextTableName() string { | ||
for d.s.Scan() { | ||
if !strings.HasPrefix(d.s.Text(), "COPY ") { | ||
continue | ||
} | ||
parts := strings.Split(d.s.Text(), `"`) | ||
if len(parts) < 3 { | ||
d.err = fmt.Errorf("invalid COPY line: %s", d.s.Text()) | ||
return "" | ||
} | ||
return parts[1] | ||
} | ||
|
||
d.err = d.s.Err() | ||
return "" | ||
} | ||
|
||
func (d *CopyScanner) csvData() string { | ||
var b strings.Builder | ||
for d.s.Scan() { | ||
if d.s.Text() == "\\." { | ||
return b.String() | ||
} | ||
b.WriteString(d.s.Text()) | ||
b.WriteByte('\n') | ||
} | ||
|
||
d.err = d.s.Err() | ||
return "" | ||
} | ||
|
||
// Scan will scan the next COPY statement. | ||
func (d *CopyScanner) Scan() bool { | ||
if d.err != nil { | ||
return false | ||
} | ||
|
||
var t TableSnapshot | ||
t.Name = d.nextTableName() | ||
if t.Name == "" { | ||
return false | ||
} | ||
|
||
data := d.csvData() | ||
if data == "" { | ||
return false | ||
} | ||
r := csv.NewReader(strings.NewReader(data)) | ||
t.Columns, d.err = r.Read() | ||
if d.err != nil { | ||
return false | ||
} | ||
t.Rows, d.err = r.ReadAll() | ||
if d.err != nil { | ||
return false | ||
} | ||
t.Sort() | ||
d.t = t | ||
|
||
return true | ||
} | ||
|
||
func (d *CopyScanner) Err() error { return d.err } | ||
func (d *CopyScanner) Table() TableSnapshot { return d.t } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
package migratetest | ||
|
||
import ( | ||
"strings" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestCopyScanner(t *testing.T) { | ||
const data = ` | ||
COPY "switchover_log" FROM stdin WITH (FORMAT csv, HEADER MATCH, ENCODING utf8); | ||
id,timestamp,data | ||
\. | ||
COPY "switchover_state" FROM stdin WITH (FORMAT csv, HEADER MATCH, ENCODING utf8); | ||
ok,current_state,db_id | ||
t,idle,8df0bb48-404b-454f-96de-d851dbec0670 | ||
\. | ||
COPY "config_limits" FROM stdin WITH (FORMAT csv, HEADER MATCH, ENCODING utf8); | ||
id,max | ||
notification_rules_per_user,15 | ||
contact_methods_per_user,10 | ||
\. | ||
` | ||
|
||
s := NewCopyScanner(strings.NewReader(data)) | ||
|
||
require.True(t, s.Scan()) | ||
table := s.Table() | ||
require.Equal(t, "switchover_log", table.Name) | ||
require.Equal(t, []string{"id", "data", "timestamp"}, table.Columns) | ||
require.Empty(t, table.Rows) | ||
|
||
require.True(t, s.Scan()) | ||
table = s.Table() | ||
require.Equal(t, "switchover_state", table.Name) | ||
require.Equal(t, []string{"current_state", "db_id", "ok"}, table.Columns) | ||
require.Equal(t, [][]string{ | ||
{"idle", "8df0bb48-404b-454f-96de-d851dbec0670", "t"}, | ||
}, table.Rows) | ||
|
||
require.True(t, s.Scan()) | ||
table = s.Table() | ||
require.Equal(t, "config_limits", table.Name) | ||
require.Equal(t, []string{"id", "max"}, table.Columns) | ||
require.Equal(t, [][]string{ // sorted | ||
{"contact_methods_per_user", "10"}, | ||
{"notification_rules_per_user", "15"}, | ||
}, table.Rows) | ||
|
||
require.False(t, s.Scan()) | ||
require.NoError(t, s.Err()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,210 @@ | ||
package migratetest | ||
|
||
import ( | ||
"slices" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
"github.com/target/goalert/devtools/pgdump-lite" | ||
) | ||
|
||
// IgnoreRule is a rule to ignore differences in a snapshot. | ||
type IgnoreRule struct { | ||
// MigrationName is the name of the migration this rule applies to. | ||
MigrationName string | ||
TableName string | ||
ColumnName string | ||
|
||
// ExtraRows will ignore extra/leftover rows in the table when migrating down. | ||
ExtraRows bool | ||
|
||
// MissingRows will ignore missing rows in the table when migrating down (e.g., table was dropped). | ||
MissingRows bool | ||
} | ||
|
||
// RuleSet is a set of IgnoreRules. | ||
type RuleSet []IgnoreRule | ||
|
||
type tableRules struct { | ||
AllowExtra bool | ||
AllowMissing bool | ||
IgnoreColumns []string | ||
} | ||
|
||
func (rs RuleSet) rulesForTable(t *testing.T, tableName string, isDown bool) tableRules { | ||
t.Helper() | ||
|
||
var r tableRules | ||
migrationName := strings.Split(t.Name(), "/")[1] | ||
for _, rule := range rs { | ||
if rule.MigrationName != "" && rule.MigrationName != migrationName { | ||
continue | ||
} | ||
if rule.TableName != tableName { | ||
continue | ||
} | ||
|
||
if isDown && rule.ExtraRows { | ||
r.AllowExtra = true | ||
} | ||
if isDown && rule.MissingRows { | ||
r.AllowMissing = true | ||
} | ||
if rule.ColumnName != "" { | ||
r.IgnoreColumns = append(r.IgnoreColumns, rule.ColumnName) | ||
} | ||
} | ||
|
||
return r | ||
} | ||
|
||
// RequireEqualDown will compare two snapshots and ignore any differences based on the rules in the RuleSet after a Down migration. | ||
func (rs RuleSet) RequireEqualDown(t *testing.T, expected, actual *Snapshot) { | ||
t.Helper() | ||
|
||
require.Subset(t, names(actual.Schema.Extensions), names(expected.Schema.Extensions), "Extensions were removed that shouldn't have been") // extensions can be added, but don't need to be removed | ||
|
||
requireSameEntities(t, expected.Schema.Functions, actual.Schema.Functions, "Functions") | ||
requireSameEntities(t, expected.Schema.Sequences, actual.Schema.Sequences, "Sequences") | ||
requireSameEntities(t, expected.Schema.Tables, actual.Schema.Tables, "Tables") | ||
|
||
requireSameEntitiesWith(t, expected.Schema.Enums, actual.Schema.Enums, "Enums", func(t *testing.T, e, act pgdump.Enum) { | ||
t.Helper() | ||
|
||
require.Subsetf(t, act.Values, e.Values, "Enum values from %s were removed that shouldn't have been", e.Name) | ||
}) | ||
|
||
requireSameEntitiesWith(t, expected.TableData, actual.TableData, "Table Data", rs.makeRequireTableDataMatch(true)) | ||
} | ||
|
||
type stringNameable interface { | ||
String() string | ||
nameable | ||
} | ||
|
||
func requireSameEntities[T stringNameable](t *testing.T, expected, actual []T, typeName string) { | ||
t.Helper() | ||
|
||
requireSameEntitiesWith(t, expected, actual, typeName, func(t *testing.T, e, act T) { | ||
t.Helper() | ||
|
||
require.Equalf(t, e.String(), act.String(), "%s %s has wrong definition", typeName, e.EntityName()) | ||
}) | ||
} | ||
|
||
func requireSameEntitiesWith[T nameable](t *testing.T, expected, actual []T, typeName string, compare func(*testing.T, T, T)) { | ||
t.Helper() | ||
|
||
require.Equal(t, names(expected), names(actual), typeName+" mismatch") | ||
|
||
for _, e := range expected { | ||
act, ok := byName(actual, e.EntityName()) | ||
if !ok { | ||
t.Fatalf("%s %s was removed and should not have been", typeName, e.EntityName()) | ||
} | ||
|
||
compare(t, e, act) | ||
} | ||
} | ||
|
||
type nameable interface { | ||
EntityName() string | ||
} | ||
|
||
func byName[T nameable](items []T, name string) (value T, ok bool) { | ||
for _, i := range items { | ||
if i.EntityName() == name { | ||
return i, true | ||
} | ||
} | ||
return value, false | ||
} | ||
|
||
func names[T nameable](items []T) []string { | ||
var out []string | ||
for _, i := range items { | ||
out = append(out, i.EntityName()) | ||
} | ||
return out | ||
} | ||
|
||
// AssertEqualUp will compare two snapshots and ignore any differences based on the rules in the RuleSet after the second Up migration. | ||
func (rs RuleSet) RequireEqualUp(t *testing.T, expected, actual *Snapshot) { | ||
t.Helper() | ||
|
||
// schema should be identical once re-applied | ||
requireSameEntities(t, expected.Schema.Functions, actual.Schema.Functions, "Functions") | ||
requireSameEntities(t, expected.Schema.Sequences, actual.Schema.Sequences, "Sequences") | ||
requireSameEntities(t, expected.Schema.Tables, actual.Schema.Tables, "Tables") | ||
requireSameEntities(t, expected.Schema.Extensions, actual.Schema.Extensions, "Extensions") | ||
requireSameEntities(t, expected.Schema.Enums, actual.Schema.Enums, "Enums") | ||
|
||
requireSameEntitiesWith(t, expected.TableData, actual.TableData, "Table Data", rs.makeRequireTableDataMatch(false)) | ||
} | ||
|
||
func (rs RuleSet) makeRequireTableDataMatch(isDown bool) func(*testing.T, TableSnapshot, TableSnapshot) { | ||
return func(t *testing.T, exp, act TableSnapshot) { | ||
t.Helper() | ||
|
||
// ensure we're comparing apples to apples | ||
require.Equalf(t, exp.Columns, act.Columns, "Table %s has wrong columns", exp.Name) | ||
|
||
rules := rs.rulesForTable(t, exp.Name, isDown) | ||
ignoreColIdx := make([]int, len(rules.IgnoreColumns)) | ||
for i, col := range rules.IgnoreColumns { | ||
ignoreColIdx[i] = slices.Index(exp.Columns, col) | ||
} | ||
|
||
var hasErr bool | ||
if !rules.AllowMissing { | ||
// find any missing expected rows | ||
for _, row := range exp.Rows { | ||
if !containsRow(act.Rows, row, ignoreColIdx) { | ||
t.Errorf("Table %s missing row: %v", exp.Name, row) | ||
hasErr = true | ||
} | ||
} | ||
} | ||
|
||
if !rules.AllowExtra { | ||
// find any extra rows in actual | ||
for _, row := range act.Rows { | ||
if !containsRow(exp.Rows, row, ignoreColIdx) { | ||
t.Errorf("Table %s has extra row: %v", exp.Name, row) | ||
hasErr = true | ||
} | ||
} | ||
} | ||
|
||
if hasErr { | ||
t.FailNow() | ||
} | ||
} | ||
} | ||
|
||
func containsRow(rows [][]string, row []string, ignoreCols []int) bool { | ||
for _, r := range rows { | ||
if rowsMatch(r, row, ignoreCols) { | ||
return true | ||
} | ||
} | ||
return false | ||
} | ||
|
||
func rowsMatch(a, b []string, ignoreCols []int) bool { | ||
if len(a) != len(b) { | ||
return false | ||
} | ||
|
||
for i := range a { | ||
if slices.Contains(ignoreCols, i) { | ||
continue | ||
} | ||
if a[i] != b[i] { | ||
return false | ||
} | ||
} | ||
|
||
return true | ||
} |
Oops, something went wrong.