fix(edge-scripts): add podman auto onboarding script [BE-12327] (#1333)

This commit is contained in:
Chaim Lev-Ari
2025-11-04 14:21:37 +02:00
committed by GitHub
parent ae53de42df
commit 34a7d75e10
4 changed files with 454 additions and 2 deletions
@@ -0,0 +1,197 @@
import { buildLinuxPodmanCommand } from './scripts';
import { ScriptFormValues } from './types';
describe('buildLinuxPodmanCommand', () => {
const defaultProperties: ScriptFormValues = {
allowSelfSignedCertificates: false,
authEnabled: false,
edgeGroupsIds: [],
edgeIdGenerator: '',
envVars: '',
group: 0,
os: 'linux',
platform: 'podman',
tagsIds: [],
tlsEnabled: false,
};
it('should generate basic command with minimal configuration', () => {
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
defaultProperties,
false,
'test-edge-id',
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command with async mode enabled', () => {
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
defaultProperties,
true, // async mode
'test-edge-id',
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command with self-signed certificates allowed', () => {
const properties = {
...defaultProperties,
allowSelfSignedCertificates: true,
};
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
properties,
false,
'test-edge-id',
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command with edge ID generator', () => {
const properties = {
...defaultProperties,
edgeIdGenerator: 'uuidgen',
};
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
properties,
false,
undefined, // no edgeId when using generator
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command with custom environment variables', () => {
const properties = {
...defaultProperties,
envVars: 'MY_VAR=value1,ANOTHER_VAR=value2',
};
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
properties,
false,
'test-edge-id',
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command with edge groups', () => {
const properties = {
...defaultProperties,
edgeGroupsIds: [1, 2, 3],
};
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
properties,
false,
'test-edge-id',
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command with portainer group', () => {
const properties = {
...defaultProperties,
group: 5,
};
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
properties,
false,
'test-edge-id',
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command with tags', () => {
const properties = {
...defaultProperties,
tagsIds: [10, 20, 30],
};
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
properties,
false,
'test-edge-id',
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command with all meta variables', () => {
const properties = {
...defaultProperties,
edgeGroupsIds: [1, 2],
group: 5,
tagsIds: [10, 20],
};
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
properties,
false,
'test-edge-id',
'test-secret'
);
expect(command).toMatchSnapshot();
});
it('should generate command without agent secret', () => {
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
defaultProperties,
false,
'test-edge-id',
undefined
);
expect(command).toMatchSnapshot();
});
it('should generate command with empty agent secret', () => {
const command = buildLinuxPodmanCommand(
'2.19.0',
'test-edge-key',
defaultProperties,
false,
'test-edge-id',
''
);
expect(command).toMatchSnapshot();
});
});