1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
package internal
import (
"io/ioutil"
"math/rand"
"os"
"os/exec"
"path/filepath"
"testing"
"time"
"github.com/facebook/ent/entc/gen"
"github.com/stretchr/testify/require"
)
func TestSnapshot_Restore(t *testing.T) {
t.Log("Running snapshot-restore integration test")
const testPackage = "../integration/privacy/ent"
err := addConflicts(testPackage)
require.NoError(t, err)
storage, err := gen.NewStorage("sql")
require.NoError(t, err)
snap := &Snapshot{
Path: filepath.Join(testPackage, "internal/schema.go"),
Config: &gen.Config{
Storage: storage,
Target: testPackage,
Schema: filepath.Join(testPackage, "schema"),
Header: `
// Copyright 2019-present Facebook Inc. All rights reserved.
// This source code is licensed under the Apache 2.0 license found
// in the LICENSE file in the root directory of this source tree.
// Code generated by entc, DO NOT EDIT.
`,
}}
require.NoError(t, snap.Restore())
err = exec.Command("go", "generate", testPackage).Run()
require.NoError(t, err)
}
// addConflicts adds VCS conflicts to the files that match the given patterns.
func addConflicts(dir string) error {
rand.Seed(time.Now().UnixNano())
infos, err := ioutil.ReadDir(dir)
if err != nil {
return err
}
for _, info := range infos {
if info.IsDir() || info.Name() == "generate.go" {
continue
}
path := filepath.Join(dir, info.Name())
fi, err := os.OpenFile(path, os.O_WRONLY|os.O_APPEND, 0644)
if err != nil {
return err
}
if _, err := fi.WriteString("\n" + conflictMarker); err != nil {
return err
}
if err := fi.Close(); err != nil {
return err
}
}
return nil
}
|