mattermost-community-enterp.../cmd/mmctl/commands/system_e2e_test.go
Claude ec1f89217a Merge: Complete Mattermost Server with Community Enterprise
Full Mattermost server source with integrated Community Enterprise features.
Includes vendor directory for offline/air-gapped builds.

Structure:
- enterprise-impl/: Enterprise feature implementations
- enterprise-community/: Init files that register implementations
- enterprise/: Bridge imports (community_imports.go)
- vendor/: All dependencies for offline builds

Build (online):
  go build ./cmd/mattermost

Build (offline/air-gapped):
  go build -mod=vendor ./cmd/mattermost

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-17 23:59:07 +09:00

171 lines
5.1 KiB
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package commands
import (
"os"
"strings"
"time"
"github.com/mattermost/mattermost/server/v8/cmd/mmctl/client"
"github.com/mattermost/mattermost/server/v8/cmd/mmctl/printer"
"github.com/mattermost/mattermost/server/public/model"
"github.com/spf13/cobra"
)
func (s *MmctlE2ETestSuite) TestGetBusyCmd() {
s.SetupEnterpriseTestHelper().InitBasic()
s.th.App.Srv().Platform().Busy.Set(time.Minute)
defer s.th.App.Srv().Platform().Busy.Clear()
s.Run("MM-T3979 Should fail when regular user attempts to get server busy status", func() {
printer.Clean()
err := getBusyCmdF(s.th.Client, &cobra.Command{}, nil)
s.Require().Error(err)
s.Require().Len(printer.GetLines(), 0)
s.Require().Len(printer.GetErrorLines(), 0)
})
s.RunForSystemAdminAndLocal("MM-T3956 Get server busy status", func(c client.Client) {
printer.Clean()
err := getBusyCmdF(c, &cobra.Command{}, nil)
s.Require().NoError(err)
s.Require().Len(printer.GetLines(), 1)
state, ok := printer.GetLines()[0].(*model.ServerBusyState)
s.Require().True(ok, true)
s.Require().True(state.Busy, true)
s.Require().Len(printer.GetErrorLines(), 0)
})
}
func (s *MmctlE2ETestSuite) TestSetBusyCmd() {
s.SetupEnterpriseTestHelper().InitBasic()
s.th.App.Srv().Platform().Busy.Clear()
cmd := &cobra.Command{}
cmd.Flags().Uint("seconds", 60, "")
s.Run("MM-T3980 Should fail when regular user attempts to set server busy status", func() {
printer.Clean()
err := setBusyCmdF(s.th.Client, cmd, nil)
s.Require().Error(err)
s.Require().Len(printer.GetLines(), 0)
s.Require().Len(printer.GetErrorLines(), 0)
})
s.RunForSystemAdminAndLocal("MM-T3957 Set server status to busy", func(c client.Client) {
printer.Clean()
err := setBusyCmdF(c, cmd, nil)
s.Require().NoError(err)
defer func() {
s.th.App.Srv().Platform().Busy.Clear()
s.Require().False(s.th.App.Srv().Platform().Busy.IsBusy())
}()
s.Require().Len(printer.GetLines(), 1)
s.Require().Equal(printer.GetLines()[0], map[string]string{"status": "ok"})
s.Require().Len(printer.GetErrorLines(), 0)
s.Require().True(s.th.App.Srv().Platform().Busy.IsBusy())
})
}
func (s *MmctlE2ETestSuite) TestClearBusyCmd() {
s.SetupEnterpriseTestHelper().InitBasic()
s.th.App.Srv().Platform().Busy.Set(time.Minute)
defer s.th.App.Srv().Platform().Busy.Clear()
s.Run("MM-T3981 Should fail when regular user attempts to clear server busy status", func() {
printer.Clean()
err := clearBusyCmdF(s.th.Client, &cobra.Command{}, nil)
s.Require().Error(err)
s.Require().Len(printer.GetLines(), 0)
s.Require().Len(printer.GetErrorLines(), 0)
})
s.RunForSystemAdminAndLocal("MM-T3958 Clear server status to busy", func(c client.Client) {
printer.Clean()
err := clearBusyCmdF(c, &cobra.Command{}, nil)
s.Require().NoError(err)
defer func() {
s.th.App.Srv().Platform().Busy.Set(time.Minute)
s.Require().True(s.th.App.Srv().Platform().Busy.IsBusy())
}()
s.Require().Len(printer.GetLines(), 1)
s.Require().Equal(printer.GetLines()[0], map[string]string{"status": "ok"})
s.Require().Len(printer.GetErrorLines(), 0)
s.Require().False(s.th.App.Srv().Platform().Busy.IsBusy())
})
}
func (s *MmctlE2ETestSuite) TestSupportPacketCmdF() {
s.SetupEnterpriseTestHelper().InitBasic()
printer.SetFormat(printer.FormatPlain)
s.T().Cleanup(func() { printer.SetFormat(printer.FormatJSON) })
s.Run("Download Support Packet with default filename", func() {
printer.Clean()
err := systemSupportPacketCmdF(s.th.SystemAdminClient, SystemSupportPacketCmd, []string{})
s.Require().NoError(err)
s.Require().Len(printer.GetLines(), 2)
s.Require().Equal(printer.GetLines()[0], "Downloading Support Packet")
s.Require().Contains(printer.GetLines()[1], "Downloaded Support Packet to ")
s.Require().Len(printer.GetErrorLines(), 0)
var found bool
entries, err := os.ReadDir(".")
s.Require().NoError(err)
for _, e := range entries {
if strings.HasPrefix(e.Name(), "mm_support_packet_") && strings.HasSuffix(e.Name(), ".zip") {
b, err := os.ReadFile(e.Name())
s.NoError(err)
s.NotEmpty(b, b)
s.T().Cleanup(func() {
err = os.Remove(e.Name())
s.Require().NoError(err)
})
found = true
}
}
s.True(found)
})
s.Run("Download Support Packet with custom filename", func() {
printer.Clean()
systemSupportPacketCmd := &cobra.Command{}
systemSupportPacketCmd.Flags().StringP("output-file", "o", "", "Define the output file name")
err := systemSupportPacketCmd.ParseFlags([]string{"-o", "foo.zip"})
s.Require().NoError(err)
defer func() {
s.Require().NoError(os.Remove("foo.zip"))
}()
err = systemSupportPacketCmdF(s.th.SystemAdminClient, systemSupportPacketCmd, []string{})
s.Require().NoError(err)
s.Require().Len(printer.GetErrorLines(), 0)
s.Require().Len(printer.GetLines(), 2)
s.Require().Equal(printer.GetLines()[0], "Downloading Support Packet")
s.Require().Equal(printer.GetLines()[1], "Downloaded Support Packet to foo.zip")
b, err := os.ReadFile("foo.zip")
s.Require().NoError(err)
s.NotNil(b, b)
})
}