// This file is part of MinIO Console Server // Copyright (c) 2022 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 . import * as roles from "../utils/roles"; import * as elements from "../utils/elements"; import * as functions from "../utils/functions"; import { testBucketBrowseButtonFor } from "../utils/functions"; fixture("Rewind Testing").page("http://localhost:9090"); test .before(async (t) => { // Create a bucket await functions.setUpBucket(t, "abucketrewind"); await functions.setVersioned(t, "abucketrewind"); await t .useRole(roles.bucketReadWrite) .navigateTo("http://localhost:9090/browser") .click(testBucketBrowseButtonFor("abucketrewind")) // Upload object to bucket .setFilesToUpload(elements.uploadInput, "../uploads/test.txt") .wait(1000) .navigateTo("http://localhost:9090/browser") .click(testBucketBrowseButtonFor("abucketrewind")) // Upload object to bucket .setFilesToUpload(elements.uploadInput, "../uploads/test.txt") .wait(1000); })("Rewind works in bucket", async (t) => { await t .useRole(roles.bucketReadWrite) .navigateTo("http://localhost:9090/browser") .click(testBucketBrowseButtonFor("abucketrewind")) .expect(elements.table.exists) .ok() .click(elements.rewindButton) .click(elements.rewindToBaseInput) .expect(elements.rewindToInput.exists) .ok() .click(elements.rewindToInput) .typeText(elements.rewindToInput, "01/01/2015 00:00") .click(elements.rewindDataButton); }) .after(async (t) => { // Cleanup created bucket and corresponding uploads await functions.cleanUpBucketAndUploads(t, "abucketrewind"); });