Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/usage_quotas/storage/components/storage_usage_statistics_spec.js')
-rw-r--r--spec/frontend/usage_quotas/storage/components/storage_usage_statistics_spec.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/spec/frontend/usage_quotas/storage/components/storage_usage_statistics_spec.js b/spec/frontend/usage_quotas/storage/components/storage_usage_statistics_spec.js
new file mode 100644
index 00000000000..73d02dc273f
--- /dev/null
+++ b/spec/frontend/usage_quotas/storage/components/storage_usage_statistics_spec.js
@@ -0,0 +1,43 @@
+import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
+import StorageUsageStatistics from '~/usage_quotas/storage/components/storage_usage_statistics.vue';
+import StorageUsageOverviewCard from '~/usage_quotas/storage/components/storage_usage_overview_card.vue';
+
+const defaultProps = {
+ // hardcoding value until we move test_fixtures from ee/ to here
+ usedStorage: 1234,
+ loading: false,
+};
+
+describe('StorageUsageStatistics', () => {
+ /** @type {import('helpers/vue_test_utils_helper').ExtendedWrapper} */
+ let wrapper;
+
+ const createComponent = ({ props = {} } = {}) => {
+ wrapper = shallowMountExtended(StorageUsageStatistics, {
+ propsData: {
+ ...defaultProps,
+ ...props,
+ },
+ });
+ };
+
+ const findOverviewSubtitle = () => wrapper.findByTestId('overview-subtitle');
+ const findStorageUsageOverviewCard = () => wrapper.findComponent(StorageUsageOverviewCard);
+
+ beforeEach(() => {
+ createComponent();
+ });
+
+ it('shows the namespace storage overview subtitle', () => {
+ expect(findOverviewSubtitle().text()).toBe('Namespace overview');
+ });
+
+ describe('StorageStatisticsCard', () => {
+ it('passes the correct props to StorageUsageOverviewCard', () => {
+ expect(findStorageUsageOverviewCard().props()).toEqual({
+ usedStorage: defaultProps.usedStorage,
+ loading: false,
+ });
+ });
+ });
+});