Implemented AGPL MinIO Object Browser simplified Console (#3509)
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
@@ -1,62 +0,0 @@
|
||||
// This file is part of MinIO Console Server
|
||||
// Copyright (c) 2023 MinIO, 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 { expect } from "@playwright/test";
|
||||
import { generateUUID, test } from "./fixtures/baseFixture";
|
||||
import { minioadminFile } from "./consts";
|
||||
import { BUCKET_LIST_PAGE } from "./consts";
|
||||
|
||||
test.use({ storageState: minioadminFile });
|
||||
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto(BUCKET_LIST_PAGE);
|
||||
await page.waitForTimeout(1000);
|
||||
});
|
||||
|
||||
test("create a new bucket", async ({ page }) => {
|
||||
await page.getByRole("button", { name: "Buckets" }).click();
|
||||
await page.getByRole("button", { name: "Create Bucket" }).click();
|
||||
await page.getByLabel("Bucket Name*").click();
|
||||
|
||||
const bucketName = `new-bucket-${generateUUID()}`;
|
||||
|
||||
await page.getByLabel("Bucket Name*").fill(bucketName);
|
||||
await page.getByRole("button", { name: "Create Bucket" }).click();
|
||||
await page.waitForTimeout(2000);
|
||||
await page.locator("#refresh-buckets").click();
|
||||
await page.getByPlaceholder("Search Buckets").fill(bucketName);
|
||||
|
||||
await expect(page.locator(`#manageBucket-${bucketName}`)).toBeTruthy();
|
||||
const bucketLocatorEl = `#manageBucket-${bucketName}`;
|
||||
await page.locator(bucketLocatorEl).click();
|
||||
await page.locator("#delete-bucket-button").click();
|
||||
//confirm modal
|
||||
await page.locator("#confirm-ok").click();
|
||||
const listItemsCount = await page.locator(bucketLocatorEl).count();
|
||||
await expect(listItemsCount).toEqual(0);
|
||||
});
|
||||
|
||||
test("invalid bucket name", async ({ page }) => {
|
||||
await page.getByRole("button", { name: "Buckets" }).click();
|
||||
await page.getByRole("button", { name: "Create Bucket" }).click();
|
||||
await page.getByLabel("Bucket Name*").click();
|
||||
await page.getByLabel("Bucket Name*").fill("invalid name");
|
||||
await page.getByRole("button", { name: "View Bucket Naming Rules" }).click();
|
||||
await expect(
|
||||
page.getByText(
|
||||
"Bucket names can consist only of lowercase letters, numbers, dots (.), and hyphe",
|
||||
),
|
||||
).toBeTruthy();
|
||||
});
|
||||
@@ -1,38 +0,0 @@
|
||||
// This file is part of MinIO Console Server
|
||||
// Copyright (c) 2023 MinIO, 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 { expect } from "@playwright/test";
|
||||
import { generateUUID, test } from "./fixtures/baseFixture";
|
||||
import { minioadminFile } from "./consts";
|
||||
import { BUCKET_LIST_PAGE } from "./consts";
|
||||
|
||||
test.use({ storageState: minioadminFile });
|
||||
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto(BUCKET_LIST_PAGE);
|
||||
});
|
||||
|
||||
test("Add a new group", async ({ page }) => {
|
||||
await page.getByRole("button", { name: "Identity" }).click();
|
||||
await page.getByRole("button", { name: "Groups" }).click();
|
||||
await page.getByRole("button", { name: "Create Group" }).click();
|
||||
|
||||
const groupName = `new-group-${generateUUID()}`;
|
||||
|
||||
await page.getByLabel("Group Name").fill(groupName);
|
||||
await page.getByRole("button", { name: "Save" }).click();
|
||||
await expect(page.getByRole("gridcell", { name: groupName })).toBeTruthy();
|
||||
});
|
||||
@@ -1,46 +0,0 @@
|
||||
// This file is part of MinIO Console Server
|
||||
// Copyright (c) 2023 MinIO, 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 { expect } from "@playwright/test";
|
||||
import { generateUUID, test } from "./fixtures/baseFixture";
|
||||
import { minioadminFile } from "./consts";
|
||||
import { BUCKET_LIST_PAGE } from "./consts";
|
||||
|
||||
test.use({ storageState: minioadminFile });
|
||||
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto(BUCKET_LIST_PAGE);
|
||||
});
|
||||
|
||||
test("Can create a policy", async ({ page }) => {
|
||||
await page.getByRole("button", { name: "Policies" }).click();
|
||||
await page.getByRole("button", { name: "Create Policy" }).click();
|
||||
await page.getByLabel("Policy Name").click();
|
||||
|
||||
const policyName = `policy-${generateUUID()}`;
|
||||
|
||||
await page.getByLabel("Policy Name").fill(policyName);
|
||||
await page.locator("#code_wrapper").click();
|
||||
await page.locator("#code_wrapper").click();
|
||||
await page.locator("#code_wrapper").click();
|
||||
await page.locator("#code_wrapper").press("Meta+a");
|
||||
await page
|
||||
.locator("#code_wrapper")
|
||||
.fill(
|
||||
'{\n "Version": "2012-10-17",\n "Statement": [\n {\n "Effect": "Allow",\n "Action": [\n "s3:*"\n ],\n "Resource": [\n "arn:aws:s3:::bucket1/*",\n "arn:aws:s3:::bucket2/*",\n "arn:aws:s3:::bucket3/*",\n "arn:aws:s3:::bucket4/*"\n ]\n },\n {\n "Effect": "Deny",\n "Action": [\n "s3:DeleteBucket"\n ],\n "Resource": [\n "arn:aws:s3:::*"\n ]\n }\n ]\n}\n',
|
||||
);
|
||||
await page.getByRole("button", { name: "Save" }).click();
|
||||
await expect(page.getByRole("gridcell", { name: policyName })).toBeTruthy();
|
||||
});
|
||||
Reference in New Issue
Block a user