mattermost-community-enterp.../cmd/mmctl/commands/integrity_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

116 lines
2.9 KiB
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package commands
import (
"context"
"errors"
"github.com/hashicorp/go-multierror"
"github.com/mattermost/mattermost/server/v8/cmd/mmctl/printer"
"github.com/mattermost/mattermost/server/public/model"
"github.com/spf13/cobra"
)
func (s *MmctlUnitTestSuite) TestIntegrityCmd() {
s.Run("Integrity check succeeds", func() {
printer.Clean()
cmd := &cobra.Command{}
cmd.Flags().Bool("confirm", true, "")
mockData := model.RelationalIntegrityCheckData{
ParentName: "parent",
ChildName: "child",
ParentIdAttr: "parentIdAttr",
ChildIdAttr: "childIdAttr",
Records: []model.OrphanedRecord{
{
ParentId: model.NewPointer("parentId"),
ChildId: model.NewPointer("childId"),
},
},
}
mockResults := []model.IntegrityCheckResult{
{
Data: mockData,
Err: nil,
},
}
s.client.
EXPECT().
CheckIntegrity(context.TODO()).
Return(mockResults, &model.Response{}, nil).
Times(1)
err := integrityCmdF(s.client, cmd, []string{})
s.Require().Nil(err)
s.Require().Len(printer.GetLines(), 1)
s.Require().Len(printer.GetErrorLines(), 0)
s.Require().Equal(mockData, printer.GetLines()[0])
})
s.Run("Integrity check fails", func() {
printer.Clean()
cmd := &cobra.Command{}
cmd.Flags().Bool("confirm", true, "")
s.client.
EXPECT().
CheckIntegrity(context.TODO()).
Return(nil, &model.Response{}, errors.New("mock error")).
Times(1)
err := integrityCmdF(s.client, cmd, []string{})
s.Require().NotNil(err)
s.Require().Len(printer.GetLines(), 0)
s.Require().Len(printer.GetErrorLines(), 0)
s.Require().Equal("unable to perform integrity check. Error: mock error", err.Error())
})
s.Run("Integrity check with errors", func() {
printer.Clean()
cmd := &cobra.Command{}
cmd.Flags().Bool("confirm", true, "")
mockData := model.RelationalIntegrityCheckData{
ParentName: "parent",
ChildName: "child",
ParentIdAttr: "parentIdAttr",
ChildIdAttr: "childIdAttr",
Records: []model.OrphanedRecord{
{
ParentId: model.NewPointer("parentId"),
ChildId: model.NewPointer("childId"),
},
},
}
mockResults := []model.IntegrityCheckResult{
{
Data: nil,
Err: errors.New("test error"),
},
{
Data: mockData,
Err: nil,
},
}
s.client.
EXPECT().
CheckIntegrity(context.TODO()).
Return(mockResults, &model.Response{}, nil).
Times(1)
var expected error
expected = multierror.Append(expected, errors.New("test error"))
err := integrityCmdF(s.client, cmd, []string{})
s.Require().EqualError(err, expected.Error())
s.Require().Len(printer.GetLines(), 1)
s.Require().Len(printer.GetErrorLines(), 1)
s.Require().Equal(mockData, printer.GetLines()[0])
s.Require().Equal("test error", printer.GetErrorLines()[0])
})
}