52 lines
1.7 KiB
PHP
52 lines
1.7 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use App\Models\PrivateKey;
|
||
|
|
use App\Models\Server;
|
||
|
|
use App\Models\Team;
|
||
|
|
use App\Models\User;
|
||
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||
|
|
|
||
|
|
uses(RefreshDatabase::class);
|
||
|
|
|
||
|
|
beforeEach(function () {
|
||
|
|
config()->set('app.env', 'local');
|
||
|
|
|
||
|
|
$this->user = User::factory()->create();
|
||
|
|
$this->team = Team::factory()->create();
|
||
|
|
$this->user->teams()->attach($this->team, ['role' => 'owner']);
|
||
|
|
$this->actingAs($this->user);
|
||
|
|
session(['currentTeam' => $this->team]);
|
||
|
|
|
||
|
|
$this->privateKey = PrivateKey::create([
|
||
|
|
'name' => 'Test Key',
|
||
|
|
'private_key' => '-----BEGIN OPENSSH PRIVATE KEY-----
|
||
|
|
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW
|
||
|
|
QyNTUxOQAAACBbhpqHhqv6aI67Mj9abM3DVbmcfYhZAhC7ca4d9UCevAAAAJi/QySHv0Mk
|
||
|
|
hwAAAAtzc2gtZWQyNTUxOQAAACBbhpqHhqv6aI67Mj9abM3DVbmcfYhZAhC7ca4d9UCevA
|
||
|
|
AAAECBQw4jg1WRT2IGHMncCiZhURCts2s24HoDS0thHnnRKVuGmoeGq/pojrsyP1pszcNV
|
||
|
|
uZx9iFkCELtxrh31QJ68AAAAEXNhaWxANzZmZjY2ZDJlMmRkAQIDBA==
|
||
|
|
-----END OPENSSH PRIVATE KEY-----',
|
||
|
|
'team_id' => $this->team->id,
|
||
|
|
]);
|
||
|
|
});
|
||
|
|
|
||
|
|
it('includes development terminal host aliases for authenticated users', function () {
|
||
|
|
Server::factory()->create([
|
||
|
|
'name' => 'Localhost',
|
||
|
|
'ip' => 'coolify-testing-host',
|
||
|
|
'team_id' => $this->team->id,
|
||
|
|
'private_key_id' => $this->privateKey->id,
|
||
|
|
]);
|
||
|
|
|
||
|
|
$response = $this->postJson('/terminal/auth/ips');
|
||
|
|
|
||
|
|
$response->assertSuccessful();
|
||
|
|
$response->assertJsonPath('ipAddresses.0', 'coolify-testing-host');
|
||
|
|
|
||
|
|
expect($response->json('ipAddresses'))
|
||
|
|
->toContain('coolify-testing-host')
|
||
|
|
->toContain('localhost')
|
||
|
|
->toContain('127.0.0.1')
|
||
|
|
->toContain('host.docker.internal');
|
||
|
|
});
|