|
| 1 | +package main |
| 2 | + |
| 3 | +import ( |
| 4 | + "context" |
| 5 | + "fmt" |
| 6 | + "github.com/fleetdm/fleet/v4/server/config" |
| 7 | + "github.com/fleetdm/fleet/v4/server/datastore/redis/redistest" |
| 8 | + "github.com/fleetdm/fleet/v4/server/fleet" |
| 9 | + appleMdm "github.com/fleetdm/fleet/v4/server/mdm/apple" |
| 10 | + "github.com/fleetdm/fleet/v4/server/ptr" |
| 11 | + "github.com/fleetdm/fleet/v4/server/service" |
| 12 | + "github.com/fleetdm/fleet/v4/server/test" |
| 13 | + "github.com/go-git/go-git/v5" |
| 14 | + |
| 15 | + "github.com/micromdm/nanodep/tokenpki" |
| 16 | + "github.com/stretchr/testify/require" |
| 17 | + "github.com/stretchr/testify/suite" |
| 18 | + "os" |
| 19 | + "path" |
| 20 | + "path/filepath" |
| 21 | + "testing" |
| 22 | +) |
| 23 | + |
| 24 | +func TestEnterpriseIntegrationsGitops(t *testing.T) { |
| 25 | + testingSuite := new(enterpriseIntegrationGitopsTestSuite) |
| 26 | + testingSuite.suite = &testingSuite.Suite |
| 27 | + suite.Run(t, testingSuite) |
| 28 | +} |
| 29 | + |
| 30 | +type enterpriseIntegrationGitopsTestSuite struct { |
| 31 | + suite.Suite |
| 32 | + withServer |
| 33 | + fleetCfg config.FleetConfig |
| 34 | +} |
| 35 | + |
| 36 | +func (s *enterpriseIntegrationGitopsTestSuite) SetupSuite() { |
| 37 | + s.withDS.SetupSuite("integrationGitopsTestSuite") |
| 38 | + |
| 39 | + appConf, err := s.ds.AppConfig(context.Background()) |
| 40 | + require.NoError(s.T(), err) |
| 41 | + appConf.MDM.EnabledAndConfigured = true |
| 42 | + appConf.MDM.WindowsEnabledAndConfigured = true |
| 43 | + appConf.MDM.AppleBMEnabledAndConfigured = true |
| 44 | + err = s.ds.SaveAppConfig(context.Background(), appConf) |
| 45 | + require.NoError(s.T(), err) |
| 46 | + |
| 47 | + testCert, testKey, err := appleMdm.NewSCEPCACertKey() |
| 48 | + require.NoError(s.T(), err) |
| 49 | + testCertPEM := tokenpki.PEMCertificate(testCert.Raw) |
| 50 | + testKeyPEM := tokenpki.PEMRSAPrivateKey(testKey) |
| 51 | + |
| 52 | + fleetCfg := config.TestConfig() |
| 53 | + config.SetTestMDMConfig(s.T(), &fleetCfg, testCertPEM, testKeyPEM, testBMToken, "../../server/service/testdata") |
| 54 | + fleetCfg.Osquery.EnrollCooldown = 0 |
| 55 | + |
| 56 | + mdmStorage, err := s.ds.NewMDMAppleMDMStorage(testCertPEM, testKeyPEM) |
| 57 | + require.NoError(s.T(), err) |
| 58 | + depStorage, err := s.ds.NewMDMAppleDEPStorage(*testBMToken) |
| 59 | + require.NoError(s.T(), err) |
| 60 | + scepStorage, err := s.ds.NewSCEPDepot(testCertPEM, testKeyPEM) |
| 61 | + require.NoError(s.T(), err) |
| 62 | + redisPool := redistest.SetupRedis(s.T(), "zz", false, false, false) |
| 63 | + |
| 64 | + serverConfig := service.TestServerOpts{ |
| 65 | + License: &fleet.LicenseInfo{ |
| 66 | + Tier: fleet.TierPremium, |
| 67 | + }, |
| 68 | + FleetConfig: &fleetCfg, |
| 69 | + MDMStorage: mdmStorage, |
| 70 | + DEPStorage: depStorage, |
| 71 | + SCEPStorage: scepStorage, |
| 72 | + Pool: redisPool, |
| 73 | + APNSTopic: "com.apple.mgmt.External.10ac3ce5-4668-4e58-b69a-b2b5ce667589", |
| 74 | + } |
| 75 | + users, server := service.RunServerForTestsWithDS(s.T(), s.ds, &serverConfig) |
| 76 | + s.T().Setenv("FLEET_SERVER_ADDRESS", server.URL) // fleetctl always uses this env var in tests |
| 77 | + s.server = server |
| 78 | + s.users = users |
| 79 | + s.fleetCfg = fleetCfg |
| 80 | + |
| 81 | + appConf, err = s.ds.AppConfig(context.Background()) |
| 82 | + require.NoError(s.T(), err) |
| 83 | + appConf.ServerSettings.ServerURL = server.URL |
| 84 | + err = s.ds.SaveAppConfig(context.Background(), appConf) |
| 85 | + require.NoError(s.T(), err) |
| 86 | +} |
| 87 | + |
| 88 | +func (s *enterpriseIntegrationGitopsTestSuite) TearDownSuite() { |
| 89 | + appConf, err := s.ds.AppConfig(context.Background()) |
| 90 | + require.NoError(s.T(), err) |
| 91 | + appConf.MDM.EnabledAndConfigured = false |
| 92 | + err = s.ds.SaveAppConfig(context.Background(), appConf) |
| 93 | + require.NoError(s.T(), err) |
| 94 | +} |
| 95 | + |
| 96 | +// TestFleetGitops runs `fleetctl gitops` command on configs in https://github.com/fleetdm/fleet-gitops repo. |
| 97 | +// Changes to that repo may cause this test to fail. |
| 98 | +func (s *enterpriseIntegrationGitopsTestSuite) TestFleetGitops() { |
| 99 | + t := s.T() |
| 100 | + const fleetGitopsRepo = "https://github.com/fleetdm/fleet-gitops" |
| 101 | + |
| 102 | + // Create GitOps user |
| 103 | + user := fleet.User{ |
| 104 | + Name: "GitOps User", |
| 105 | + |
| 106 | + GlobalRole: ptr.String(fleet.RoleGitOps), |
| 107 | + } |
| 108 | + require.NoError(t, user.SetPassword(test.GoodPassword, 10, 10)) |
| 109 | + _, err := s.ds.NewUser(context.Background(), &user) |
| 110 | + require.NoError(t, err) |
| 111 | + |
| 112 | + // Create a temporary fleetctl config file |
| 113 | + fleetctlConfig, err := os.CreateTemp(t.TempDir(), "*.yml") |
| 114 | + require.NoError(t, err) |
| 115 | + token := s.getTestToken(user.Email, test.GoodPassword) |
| 116 | + configStr := fmt.Sprintf( |
| 117 | + ` |
| 118 | +contexts: |
| 119 | + default: |
| 120 | + address: %s |
| 121 | + tls-skip-verify: true |
| 122 | + token: %s |
| 123 | +`, s.server.URL, token, |
| 124 | + ) |
| 125 | + _, err = fleetctlConfig.WriteString(configStr) |
| 126 | + require.NoError(t, err) |
| 127 | + |
| 128 | + // Clone git repo |
| 129 | + repoDir := t.TempDir() |
| 130 | + _, err = git.PlainClone( |
| 131 | + repoDir, false, &git.CloneOptions{ |
| 132 | + ReferenceName: "main", |
| 133 | + SingleBranch: true, |
| 134 | + Depth: 1, |
| 135 | + URL: fleetGitopsRepo, |
| 136 | + Progress: os.Stdout, |
| 137 | + }, |
| 138 | + ) |
| 139 | + require.NoError(t, err) |
| 140 | + |
| 141 | + // Set the required environment variables |
| 142 | + t.Setenv("FLEET_SSO_METADATA", "sso_metadata") |
| 143 | + t.Setenv("FLEET_GLOBAL_ENROLL_SECRET", "global_enroll_secret") |
| 144 | + t.Setenv("FLEET_WORKSTATIONS_ENROLL_SECRET", "workstations_enroll_secret") |
| 145 | + t.Setenv("FLEET_WORKSTATIONS_CANARY_ENROLL_SECRET", "workstations_canary_enroll_secret") |
| 146 | + globalFile := path.Join(repoDir, "default.yml") |
| 147 | + teamsDir := path.Join(repoDir, "teams") |
| 148 | + teamFiles, err := os.ReadDir(teamsDir) |
| 149 | + require.NoError(t, err) |
| 150 | + |
| 151 | + // Dry run |
| 152 | + _ = runAppForTest(t, []string{"gitops", "--config", fleetctlConfig.Name(), "-f", globalFile, "--dry-run"}) |
| 153 | + for _, file := range teamFiles { |
| 154 | + if filepath.Ext(file.Name()) == ".yml" { |
| 155 | + _ = runAppForTest(t, []string{"gitops", "--config", fleetctlConfig.Name(), "-f", path.Join(teamsDir, file.Name()), "--dry-run"}) |
| 156 | + } |
| 157 | + } |
| 158 | + |
| 159 | + // Real run |
| 160 | + _ = runAppForTest(t, []string{"gitops", "--config", fleetctlConfig.Name(), "-f", globalFile}) |
| 161 | + for _, file := range teamFiles { |
| 162 | + if filepath.Ext(file.Name()) == ".yml" { |
| 163 | + _ = runAppForTest(t, []string{"gitops", "--config", fleetctlConfig.Name(), "-f", path.Join(teamsDir, file.Name())}) |
| 164 | + } |
| 165 | + } |
| 166 | + |
| 167 | +} |
0 commit comments