// Copyright 2018 The etcd Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package snapshot_test import ( "context" "fmt" "math/rand" "net/url" "os" "path/filepath" "testing" "time" "go.etcd.io/etcd/client/pkg/v3/fileutil" "go.etcd.io/etcd/client/pkg/v3/testutil" "go.etcd.io/etcd/client/v3" "go.etcd.io/etcd/client/v3/snapshot" "go.etcd.io/etcd/server/v3/embed" "go.etcd.io/etcd/tests/v3/integration" "go.uber.org/zap/zaptest" ) // TestSaveSnapshotFilePermissions ensures that the snapshot is saved with // the correct file permissions. func TestSaveSnapshotFilePermissions(t *testing.T) { expectedFileMode := os.FileMode(fileutil.PrivateFileMode) kvs := []kv{{"foo1", "bar1"}, {"foo2", "bar2"}, {"foo3", "bar3"}} dbPath := createSnapshotFile(t, kvs) defer os.RemoveAll(dbPath) dbInfo, err := os.Stat(dbPath) if err != nil { t.Fatalf("failed to get test snapshot file status: %v", err) } actualFileMode := dbInfo.Mode() if expectedFileMode != actualFileMode { t.Fatalf("expected test snapshot file mode %s, got %s:", expectedFileMode, actualFileMode) } } type kv struct { k, v string } // creates a snapshot file and returns the file path. func createSnapshotFile(t *testing.T, kvs []kv) string { testutil.SkipTestIfShortMode(t, "Snapshot creation tests are depending on embedded etcServer so are integration-level tests.") clusterN := 1 urls := newEmbedURLs(clusterN * 2) cURLs, pURLs := urls[:clusterN], urls[clusterN:] cfg := integration.NewEmbedConfig(t, "default") cfg.ClusterState = "new" cfg.LCUrls, cfg.ACUrls = cURLs, cURLs cfg.LPUrls, cfg.APUrls = pURLs, pURLs cfg.InitialCluster = fmt.Sprintf("%s=%s", cfg.Name, pURLs[0].String()) srv, err := embed.StartEtcd(cfg) if err != nil { t.Fatal(err) } defer func() { srv.Close() }() select { case <-srv.Server.ReadyNotify(): case <-time.After(3 * time.Second): t.Fatalf("failed to start embed.Etcd for creating snapshots") } ccfg := clientv3.Config{Endpoints: []string{cfg.ACUrls[0].String()}} cli, err := integration.NewClient(t, ccfg) if err != nil { t.Fatal(err) } defer cli.Close() for i := range kvs { ctx, cancel := context.WithTimeout(context.Background(), testutil.RequestTimeout) _, err = cli.Put(ctx, kvs[i].k, kvs[i].v) cancel() if err != nil { t.Fatal(err) } } dpPath := filepath.Join(t.TempDir(), fmt.Sprintf("snapshot%d.db", time.Now().Nanosecond())) if err = snapshot.Save(context.Background(), zaptest.NewLogger(t), ccfg, dpPath); err != nil { t.Fatal(err) } return dpPath } func newEmbedURLs(n int) (urls []url.URL) { urls = make([]url.URL, n) for i := 0; i < n; i++ { rand.Seed(int64(time.Now().Nanosecond())) u, _ := url.Parse(fmt.Sprintf("unix://localhost:%d", rand.Intn(45000))) urls[i] = *u } return urls }