Skip to content

Commit

Permalink
Web: attempt state with AddApp component
Browse files Browse the repository at this point in the history
  • Loading branch information
kimlisa authored and github-actions committed Nov 7, 2024
1 parent 33a6b6c commit f4d062a
Show file tree
Hide file tree
Showing 2 changed files with 113 additions and 2 deletions.
110 changes: 110 additions & 0 deletions web/packages/teleport/src/Apps/AddApp/Manually.test.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
/**
* Teleport
* Copyright (C) 2023 Gravitational, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

import React from 'react';
import { render, screen } from 'design/utils/testing';

import { Manually } from './Manually';

test('loading state renders', async () => {
const token = {
id: 'token',
expiryText: '',
expiry: null,
safeName: '',
isStatic: false,
method: 'kubernetes',
roles: [],
content: '',
};
render(
<Manually
isEnterprise={false}
isAuthTypeLocal={true}
version="v17"
user="llama"
token={token}
attempt={{ status: 'processing' }}
onClose={() => {}}
createToken={() => null}
/>
);

await screen.findByTestId('indicator');
expect(screen.queryByText(/step 1/i)).not.toBeInTheDocument();
});

test('success state renders', async () => {
const token = {
id: 'token',
expiryText: '',
expiry: null,
safeName: '',
isStatic: false,
method: 'kubernetes',
roles: [],
content: '',
};
render(
<Manually
isEnterprise={false}
isAuthTypeLocal={true}
version="v17"
user="llama"
token={token}
attempt={{ status: 'success' }}
onClose={() => {}}
createToken={() => null}
/>
);

expect(screen.getByText(/step 1/i)).toBeInTheDocument();
expect(screen.getByText(/token will be valid for/i)).toBeInTheDocument();
expect(screen.queryByText(/generate a join token/i)).not.toBeInTheDocument();
});

test('failed state renders', async () => {
const token = {
id: 'token',
expiryText: '',
expiry: null,
safeName: '',
isStatic: false,
method: 'kubernetes',
roles: [],
content: '',
};
render(
<Manually
isEnterprise={false}
isAuthTypeLocal={true}
version="v17"
user="llama"
token={token}
attempt={{ status: 'failed' }}
onClose={() => {}}
createToken={() => null}
/>
);

expect(screen.getByText(/step 1/i)).toBeInTheDocument();
expect(screen.getByText(/generate a join token/i)).toBeInTheDocument();
expect(
screen.queryByText(/token will be valid for/i)
).not.toBeInTheDocument();
});
5 changes: 3 additions & 2 deletions web/packages/teleport/src/Apps/AddApp/Manually.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ export function Manually({
- Download Teleport package to your computer
<DownloadLinks isEnterprise={isEnterprise} version={version} />
</Box>
{attempt.status === 'failed' ? (
{attempt.status === 'failed' && (
<StepsWithoutToken host={host} tshLoginCmd={tshLoginCmd} />
) : (
)}
{attempt.status === 'success' && (
<StepsWithToken createToken={createToken} host={host} token={token} />
)}
</DialogContent>
Expand Down

0 comments on commit f4d062a

Please # to comment.