mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-24 10:05:47 -05:00
49 lines
2.4 KiB
PHP
49 lines
2.4 KiB
PHP
<?php
|
|
|
|
it('uses shared sidebar navigation for every team settings page', function () {
|
|
$sidebar = file_get_contents(resource_path('views/components/team/settings-layout.blade.php'));
|
|
$navbar = file_get_contents(resource_path('views/components/dashboard/navbar.blade.php'));
|
|
|
|
foreach ([
|
|
resource_path('views/livewire/team/index.blade.php'),
|
|
resource_path('views/livewire/team/member/index.blade.php'),
|
|
resource_path('views/livewire/team/admin-view.blade.php'),
|
|
resource_path('views/livewire/team/danger-zone.blade.php'),
|
|
] as $view) {
|
|
expect(file_get_contents($view))
|
|
->toContain('<x-team.settings-layout>')
|
|
->not->toContain('<x-team.navbar');
|
|
}
|
|
|
|
expect($sidebar)
|
|
->toContain("'label' => 'General'")
|
|
->toContain("'label' => 'Members'")
|
|
->toContain("'label' => 'Admin View'")
|
|
->toContain("'label' => 'Danger Zone'")
|
|
->toContain('application-settings-navigation')
|
|
->not->toContain('New team');
|
|
expect(file_get_contents(resource_path('views/livewire/team/index.blade.php')))
|
|
->toContain('buttonTitle="New team"')
|
|
->not->toContain('Delete team');
|
|
expect(file_get_contents(resource_path('views/livewire/team/danger-zone.blade.php')))
|
|
->toContain('Delete team')
|
|
->toContain('status="Permanent"')
|
|
->toContain('border-red-300')
|
|
->toContain('<table class="w-full text-left text-sm">')
|
|
->toContain('wire:click="refreshResources"')
|
|
->not->toContain('wire:loading.class="animate-spin"')
|
|
->toContain("route('project.show', ['project_uuid' => \$project->uuid])")
|
|
->toContain("route('server.show', ['server_uuid' => \$server->uuid])")
|
|
->toContain('target="_blank" rel="noopener noreferrer"')
|
|
->toContain('Delete every server owned by this team before deleting it.')
|
|
->toContain('currentTeam()->servers->isEmpty()')
|
|
->not->toContain('currentTeam()->isEmpty()');
|
|
expect(file_get_contents(resource_path('views/livewire/switch-team.blade.php')))
|
|
->toContain('New team')
|
|
->toContain('team-switcher-create-expanded')
|
|
->toContain('team-switcher-create-collapsed');
|
|
expect($navbar)
|
|
->toContain("request()->routeIs('team.index', 'team.member.index', 'team.admin-view', 'team.danger-zone')")
|
|
->not->toContain("['label' => 'Members', 'route' => 'team.member.index'");
|
|
});
|