123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- // +build linux, experimental
- package main
- import (
- "github.com/docker/docker/pkg/integration/checker"
- "github.com/go-check/check"
- "os"
- "os/exec"
- "time"
- )
- var pluginName = "tiborvass/no-remove"
- // TestDaemonRestartWithPluginEnabled tests state restore for an enabled plugin
- func (s *DockerDaemonSuite) TestDaemonRestartWithPluginEnabled(c *check.C) {
- if err := s.d.Start(); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- if out, err := s.d.Cmd("plugin", "install", "--grant-all-permissions", pluginName); err != nil {
- c.Fatalf("Could not install plugin: %v %s", err, out)
- }
- defer func() {
- if out, err := s.d.Cmd("plugin", "disable", pluginName); err != nil {
- c.Fatalf("Could not disable plugin: %v %s", err, out)
- }
- if out, err := s.d.Cmd("plugin", "remove", pluginName); err != nil {
- c.Fatalf("Could not remove plugin: %v %s", err, out)
- }
- }()
- if err := s.d.Restart(); err != nil {
- c.Fatalf("Could not restart daemon: %v", err)
- }
- out, err := s.d.Cmd("plugin", "ls")
- if err != nil {
- c.Fatalf("Could not list plugins: %v %s", err, out)
- }
- c.Assert(out, checker.Contains, pluginName)
- c.Assert(out, checker.Contains, "true")
- }
- // TestDaemonRestartWithPluginEnabled tests state restore for a disabled plugin
- func (s *DockerDaemonSuite) TestDaemonRestartWithPluginDisabled(c *check.C) {
- if err := s.d.Start(); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- if out, err := s.d.Cmd("plugin", "install", "--grant-all-permissions", pluginName, "--disable"); err != nil {
- c.Fatalf("Could not install plugin: %v %s", err, out)
- }
- defer func() {
- if out, err := s.d.Cmd("plugin", "remove", pluginName); err != nil {
- c.Fatalf("Could not remove plugin: %v %s", err, out)
- }
- }()
- if err := s.d.Restart(); err != nil {
- c.Fatalf("Could not restart daemon: %v", err)
- }
- out, err := s.d.Cmd("plugin", "ls")
- if err != nil {
- c.Fatalf("Could not list plugins: %v %s", err, out)
- }
- c.Assert(out, checker.Contains, pluginName)
- c.Assert(out, checker.Contains, "false")
- }
- // TestDaemonShutdownLiveRestoreWithPlugins leaves plugin running.
- func (s *DockerDaemonSuite) TestDaemonShutdownLiveRestoreWithPlugins(c *check.C) {
- if err := s.d.Start("--live-restore"); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- if out, err := s.d.Cmd("plugin", "install", "--grant-all-permissions", pluginName); err != nil {
- c.Fatalf("Could not install plugin: %v %s", err, out)
- }
- defer func() {
- if err := s.d.Restart("--live-restore"); err != nil {
- c.Fatalf("Could not restart daemon: %v", err)
- }
- if out, err := s.d.Cmd("plugin", "disable", pluginName); err != nil {
- c.Fatalf("Could not disable plugin: %v %s", err, out)
- }
- if out, err := s.d.Cmd("plugin", "remove", pluginName); err != nil {
- c.Fatalf("Could not remove plugin: %v %s", err, out)
- }
- }()
- if err := s.d.Kill(); err != nil {
- c.Fatalf("Could not kill daemon: %v", err)
- }
- cmd := exec.Command("pgrep", "-f", "plugin-no-remove")
- if out, ec, err := runCommandWithOutput(cmd); ec != 0 {
- c.Fatalf("Expected exit code '0', got %d err: %v output: %s ", ec, err, out)
- }
- }
- // TestDaemonShutdownWithPlugins shuts down running plugins.
- func (s *DockerDaemonSuite) TestDaemonShutdownWithPlugins(c *check.C) {
- if err := s.d.Start(); err != nil {
- c.Fatalf("Could not start daemon: %v", err)
- }
- if out, err := s.d.Cmd("plugin", "install", "--grant-all-permissions", pluginName); err != nil {
- c.Fatalf("Could not install plugin: %v %s", err, out)
- }
- defer func() {
- if err := s.d.Restart(); err != nil {
- c.Fatalf("Could not restart daemon: %v", err)
- }
- if out, err := s.d.Cmd("plugin", "disable", pluginName); err != nil {
- c.Fatalf("Could not disable plugin: %v %s", err, out)
- }
- if out, err := s.d.Cmd("plugin", "remove", pluginName); err != nil {
- c.Fatalf("Could not remove plugin: %v %s", err, out)
- }
- }()
- if err := s.d.cmd.Process.Signal(os.Interrupt); err != nil {
- c.Fatalf("Could not kill daemon: %v", err)
- }
- time.Sleep(5 * time.Second)
- cmd := exec.Command("pgrep", "-f", "plugin-no-remove")
- if out, ec, err := runCommandWithOutput(cmd); ec != 1 {
- c.Fatalf("Expected exit code '1', got %d err: %v output: %s ", ec, err, out)
- }
- }
|