Import AITURK IDE 1.0.0-beta.1 from Hermes 63279301; preserve MIT license

This commit is contained in:
2026-09-05 13:26:46 +03:00
commit 03634b1ca3
11340 changed files with 3442369 additions and 0 deletions
@@ -0,0 +1,46 @@
import { describe, expect, it } from 'vitest'
import { enrichSelectedSshHost, selectSshHost } from './ssh-host-selection'
const state = {
mode: 'ssh',
sshHost: 'linux-box',
sshUser: 'operator',
sshPort: 2222,
sshKeyPath: '/keys/linux',
sshRemoteHermesPath: '/opt/hermes'
}
describe('selectSshHost', () => {
it('clears host-specific fields when the selected host changes', () => {
expect(selectSshHost(state, 'mac-box')).toEqual({
mode: 'ssh',
sshHost: 'mac-box',
sshUser: '',
sshPort: null,
sshKeyPath: '',
sshRemoteHermesPath: ''
})
})
it('preserves state when reselecting the same host', () => {
expect(selectSshHost(state, state.sshHost)).toBe(state)
})
it('enriches only the host that produced the ssh config result', () => {
const selected = selectSshHost(state, 'mac-box')
expect(
enrichSelectedSshHost(selected, 'mac-box', {
identityFile: '~/.ssh/id_ed25519',
port: 22,
user: 'hermes'
})
).toMatchObject({
sshHost: 'mac-box',
sshUser: 'hermes',
sshPort: null,
sshKeyPath: '~/.ssh/id_ed25519'
})
expect(enrichSelectedSshHost(state, 'mac-box', { user: 'wrong' })).toBe(state)
})
})