-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [UIE-8074] - DBaaS GA Summary tab
- Loading branch information
1 parent
3eaf8c0
commit 5650849
Showing
13 changed files
with
1,374 additions
and
317 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
packages/manager/.changeset/pr-11091-upcoming-features-1728668394698.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@linode/manager": Upcoming Features | ||
--- | ||
|
||
DBaaS GA summary tab enhancements ([#11091](https://github.com/linode/manager/pull/11091)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
215 changes: 215 additions & 0 deletions
215
...es/manager/src/features/Databases/DatabaseDetail/DatabaseSummary/DatabaseSummary.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
import { waitFor } from '@testing-library/react'; | ||
import * as React from 'react'; | ||
import { vi } from 'vitest'; | ||
|
||
import { databaseFactory } from 'src/factories'; | ||
import { renderWithTheme } from 'src/utilities/testHelpers'; | ||
|
||
import * as utils from '../../utilities'; | ||
import { DatabaseSummary } from './DatabaseSummary'; | ||
|
||
import type { Database } from '@linode/api-v4'; | ||
|
||
const CLUSTER_CONFIGURATION = 'Cluster Configuration'; | ||
const THREE_NODE = 'Primary +2 replicas'; | ||
const TWO_NODE = 'Primary +1 replicas'; | ||
const VERSION = 'Version'; | ||
|
||
const CONNECTION_DETAILS = 'Connection Details'; | ||
const PRIVATE_NETWORK_HOST = 'Private Network Host'; | ||
const PRIVATE_NETWORK_HOST_LABEL = 'private network host'; | ||
const READONLY_HOST_LABEL = 'read-only host'; | ||
const GA_READONLY_HOST_LABEL = 'Read-only Host'; | ||
|
||
const ACCESS_CONTROLS = 'Access Controls'; | ||
|
||
const DEFAULT_PLATFORM = 'rdbms-default'; | ||
const DEFAULT_PRIMARY = 'db-mysql-default-primary.net'; | ||
const DEFAULT_STANDBY = 'db-mysql-default-standby.net'; | ||
|
||
const LEGACY_PLATFORM = 'rdbms-legacy'; | ||
const LEGACY_PRIMARY = 'db-mysql-legacy-primary.net'; | ||
const LEGACY_SECONDARY = 'db-mysql-legacy-secondary.net'; | ||
|
||
const spy = vi.spyOn(utils, 'useIsDatabasesEnabled'); | ||
spy.mockReturnValue({ | ||
isDatabasesEnabled: true, | ||
isDatabasesV1Enabled: true, | ||
isDatabasesV2Beta: false, | ||
isDatabasesV2Enabled: true, | ||
isDatabasesV2GA: true, | ||
isUserExistingBeta: false, | ||
isUserNewBeta: false, | ||
}); | ||
|
||
describe('Database Summary', () => { | ||
it('should render V2GA view default db', async () => { | ||
const database = databaseFactory.build({ | ||
cluster_size: 2, | ||
hosts: { | ||
primary: DEFAULT_PRIMARY, | ||
standby: DEFAULT_STANDBY, | ||
}, | ||
platform: DEFAULT_PLATFORM, | ||
}) as Database; | ||
|
||
const { queryAllByText } = renderWithTheme( | ||
<DatabaseSummary database={database} /> | ||
); | ||
|
||
await waitFor(() => { | ||
expect(queryAllByText(CLUSTER_CONFIGURATION)).toHaveLength(1); | ||
expect(queryAllByText(TWO_NODE)).toHaveLength(1); | ||
expect(queryAllByText(VERSION)).toHaveLength(0); | ||
|
||
expect(queryAllByText(CONNECTION_DETAILS)).toHaveLength(1); | ||
expect(queryAllByText(PRIVATE_NETWORK_HOST)).toHaveLength(0); | ||
expect(queryAllByText(GA_READONLY_HOST_LABEL)).toHaveLength(1); | ||
expect(queryAllByText(DEFAULT_STANDBY)).toHaveLength(1); | ||
|
||
expect(queryAllByText(ACCESS_CONTROLS)).toHaveLength(0); | ||
}); | ||
}); | ||
|
||
it('should render V2GA view legacy db', async () => { | ||
const database = databaseFactory.build({ | ||
cluster_size: 3, | ||
hosts: { | ||
primary: LEGACY_PRIMARY, | ||
secondary: LEGACY_SECONDARY, | ||
}, | ||
platform: LEGACY_PLATFORM, | ||
}) as Database; | ||
|
||
const { queryAllByText } = renderWithTheme( | ||
<DatabaseSummary database={database} /> | ||
); | ||
|
||
await waitFor(() => { | ||
expect(queryAllByText(CLUSTER_CONFIGURATION)).toHaveLength(1); | ||
expect(queryAllByText(THREE_NODE)).toHaveLength(1); | ||
expect(queryAllByText(VERSION)).toHaveLength(0); | ||
|
||
expect(queryAllByText(CONNECTION_DETAILS)).toHaveLength(1); | ||
expect(queryAllByText(PRIVATE_NETWORK_HOST)).toHaveLength(1); | ||
expect(queryAllByText(GA_READONLY_HOST_LABEL)).toHaveLength(0); | ||
expect(queryAllByText(LEGACY_SECONDARY)).toHaveLength(1); | ||
|
||
expect(queryAllByText(ACCESS_CONTROLS)).toHaveLength(0); | ||
}); | ||
}); | ||
|
||
it('should render Beta view default db', async () => { | ||
spy.mockReturnValue({ | ||
isDatabasesEnabled: true, | ||
isDatabasesV1Enabled: true, | ||
isDatabasesV2Beta: true, | ||
isDatabasesV2Enabled: true, | ||
isDatabasesV2GA: false, | ||
isUserExistingBeta: true, | ||
isUserNewBeta: false, | ||
}); | ||
const database = databaseFactory.build({ | ||
cluster_size: 2, | ||
hosts: { | ||
primary: DEFAULT_PRIMARY, | ||
secondary: undefined, | ||
standby: DEFAULT_STANDBY, | ||
}, | ||
platform: DEFAULT_PLATFORM, | ||
}) as Database; | ||
|
||
const { queryAllByText } = renderWithTheme( | ||
<DatabaseSummary database={database} /> | ||
); | ||
|
||
await waitFor(() => { | ||
expect(queryAllByText(CLUSTER_CONFIGURATION)).toHaveLength(1); | ||
expect(queryAllByText(TWO_NODE)).toHaveLength(1); | ||
expect(queryAllByText(VERSION)).toHaveLength(1); | ||
|
||
expect(queryAllByText(CONNECTION_DETAILS)).toHaveLength(1); | ||
expect(queryAllByText(PRIVATE_NETWORK_HOST_LABEL)).toHaveLength(0); | ||
expect(queryAllByText(READONLY_HOST_LABEL)).toHaveLength(1); | ||
expect(queryAllByText(/db-mysql-default-standby.net/)).toHaveLength(1); | ||
|
||
expect(queryAllByText(ACCESS_CONTROLS)).toHaveLength(1); | ||
}); | ||
}); | ||
|
||
it('should render Beta view legacy db', async () => { | ||
spy.mockReturnValue({ | ||
isDatabasesEnabled: true, | ||
isDatabasesV1Enabled: true, | ||
isDatabasesV2Beta: true, | ||
isDatabasesV2Enabled: true, | ||
isDatabasesV2GA: false, | ||
isUserExistingBeta: true, | ||
isUserNewBeta: false, | ||
}); | ||
const database = databaseFactory.build({ | ||
cluster_size: 3, | ||
hosts: { | ||
primary: LEGACY_PRIMARY, | ||
secondary: LEGACY_SECONDARY, | ||
standby: undefined, | ||
}, | ||
platform: LEGACY_PLATFORM, | ||
}) as Database; | ||
|
||
const { queryAllByText } = renderWithTheme( | ||
<DatabaseSummary database={database} /> | ||
); | ||
|
||
await waitFor(() => { | ||
expect(queryAllByText(CLUSTER_CONFIGURATION)).toHaveLength(1); | ||
expect(queryAllByText(THREE_NODE)).toHaveLength(1); | ||
expect(queryAllByText(VERSION)).toHaveLength(1); | ||
|
||
expect(queryAllByText(CONNECTION_DETAILS)).toHaveLength(1); | ||
expect(queryAllByText(PRIVATE_NETWORK_HOST_LABEL)).toHaveLength(1); | ||
expect(queryAllByText(READONLY_HOST_LABEL)).toHaveLength(0); | ||
expect(queryAllByText(/db-mysql-legacy-secondary.net/)).toHaveLength(1); | ||
|
||
expect(queryAllByText(ACCESS_CONTROLS)).toHaveLength(1); | ||
}); | ||
}); | ||
|
||
it('should render V1 view legacy db', async () => { | ||
spy.mockReturnValue({ | ||
isDatabasesEnabled: true, | ||
isDatabasesV1Enabled: true, | ||
isDatabasesV2Beta: false, | ||
isDatabasesV2Enabled: false, | ||
isDatabasesV2GA: false, | ||
isUserExistingBeta: false, | ||
isUserNewBeta: false, | ||
}); | ||
const database = databaseFactory.build({ | ||
cluster_size: 3, | ||
hosts: { | ||
primary: LEGACY_PRIMARY, | ||
secondary: LEGACY_SECONDARY, | ||
standby: undefined, | ||
}, | ||
platform: LEGACY_PLATFORM, | ||
}) as Database; | ||
|
||
const { queryAllByText } = renderWithTheme( | ||
<DatabaseSummary database={database} /> | ||
); | ||
|
||
await waitFor(() => { | ||
expect(queryAllByText(CLUSTER_CONFIGURATION)).toHaveLength(1); | ||
expect(queryAllByText(THREE_NODE)).toHaveLength(1); | ||
expect(queryAllByText(VERSION)).toHaveLength(1); | ||
|
||
expect(queryAllByText(CONNECTION_DETAILS)).toHaveLength(1); | ||
expect(queryAllByText(PRIVATE_NETWORK_HOST_LABEL)).toHaveLength(1); | ||
expect(queryAllByText(READONLY_HOST_LABEL)).toHaveLength(0); | ||
expect(queryAllByText(/db-mysql-legacy-secondary.net/)).toHaveLength(1); | ||
|
||
expect(queryAllByText(ACCESS_CONTROLS)).toHaveLength(1); | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 0 additions & 18 deletions
18
...r/src/features/Databases/DatabaseDetail/DatabaseSummary/DatabaseSummaryAccessControls.tsx
This file was deleted.
Oops, something went wrong.
50 changes: 50 additions & 0 deletions
50
...res/Databases/DatabaseDetail/DatabaseSummary/DatabaseSummaryClusterConfiguration.style.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import { styled } from '@mui/material/styles'; | ||
import Grid2 from '@mui/material/Unstable_Grid2/Grid2'; | ||
|
||
import { Box } from 'src/components/Box'; | ||
import { Typography } from 'src/components/Typography'; | ||
|
||
export const StyledGridContainer = styled(Grid2, { | ||
label: 'StyledGridContainer', | ||
})(({ theme }) => ({ | ||
'&>*:nth-of-type(even)': { | ||
boxShadow: `inset 0px -1px 0px 0 ${ | ||
theme.palette.mode === 'dark' | ||
? theme.color.white | ||
: theme.palette.grey[200] | ||
}`, | ||
}, | ||
'&>*:nth-of-type(odd)': { | ||
boxShadow: `inset 0px -1px 0px 0 ${theme.color.white}`, | ||
marginBottom: '1px', | ||
}, | ||
boxShadow: `inset 0 -1px 0 0 ${ | ||
theme.palette.mode === 'dark' ? theme.color.white : theme.palette.grey[200] | ||
}, inset 0 1px 0 0 ${ | ||
theme.palette.mode === 'dark' ? theme.color.white : theme.palette.grey[200] | ||
}, inset -1px 0 0 ${ | ||
theme.palette.mode === 'dark' ? theme.color.white : theme.palette.grey[200] | ||
}`, | ||
})); | ||
|
||
export const StyledLabelTypography = styled(Typography, { | ||
label: 'StyledLabelTypography', | ||
})(({ theme }) => ({ | ||
background: | ||
theme.palette.mode === 'dark' | ||
? theme.bg.tableHeader | ||
: theme.palette.grey[200], | ||
color: theme.palette.mode === 'dark' ? theme.color.grey6 : 'inherit', | ||
fontFamily: theme.font.bold, | ||
height: '100%', | ||
padding: '4px 15px', | ||
})); | ||
|
||
export const StyledValueBox = styled(Box, { | ||
label: 'StyledValueBox', | ||
})(({ theme }) => ({ | ||
alignItems: 'center', | ||
color: theme.palette.mode === 'dark' ? theme.color.grey8 : theme.color.black, | ||
display: 'flex', | ||
padding: `0 ${theme.spacing()}`, | ||
})); |
Oops, something went wrong.