/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include "common/config-manager.h" #include "common/stream.h" #include "common/util.h" #include "testbed/cloud.h" #include namespace Testbed { CloudTestSuite::CloudTestSuite() { // Cloud tests depend on CloudMan. // If there is no Storage connected to it, disable this test suite. if (CloudMan.getCurrentStorage() == nullptr) { logPrintf("WARNING! : No Storage connected to CloudMan found. Skipping Cloud tests\n"); Testsuite::enable(false); } addTest("UserInfo", &CloudTests::testInfo, true); addTest("ListDirectory", &CloudTests::testDirectoryListing, true); addTest("CreateDirectory", &CloudTests::testDirectoryCreating, true); } /* void CloudTestSuite::enable(bool flag) { Testsuite::enable(ConfParams.isGameDataFound() ? flag : false); } */ ///// TESTS GO HERE ///// bool CloudTests::waitForCallback() { const int TIMEOUT = 30; Common::Point pt; pt.x = 10; pt.y = 10; Testsuite::writeOnScreen("Waiting for callback...", pt); int left = TIMEOUT; while (--left) { if (ConfParams.isCloudTestCallbackCalled()) return true; if (ConfParams.isCloudTestErrorCallbackCalled()) return true; g_system->delayMillis(1000); } return false; } bool CloudTests::waitForCallbackMore() { while (!waitForCallback()) { Common::String info = "It takes more time than expected. Do you want to skip the test or wait more?"; if (Testsuite::handleInteractiveInput(info, "Wait", "Skip", kOptionRight)) { Testsuite::logPrintf("Info! Skipping test : info()\n"); return false; } } return true; } void CloudTests::infoCallback(Cloud::Storage::StorageInfoResponse response) { ConfParams.setCloudTestCallbackCalled(true); Testsuite::logPrintf("Info! User's ID: %s\n", response.value.uid().c_str()); Testsuite::logPrintf("Info! User's email: %s\n", response.value.email().c_str()); Testsuite::logPrintf("Info! User's name: %s\n", response.value.name().c_str()); Testsuite::logPrintf("Info! User's quota: %lu bytes used / %lu bytes available\n", response.value.used(), response.value.available()); } void CloudTests::directoryListedCallback(Cloud::Storage::FileArrayResponse response) { ConfParams.setCloudTestCallbackCalled(true); if (response.value.size() == 0) { Testsuite::logPrintf("Warning! Directory is empty!\n"); return; } Common::String directory, file; uint32 directories = 0, files = 0; for (uint32 i = 0; i < response.value.size(); ++i) { if (response.value[i].isDirectory()) { if (++directories == 1) directory = response.value[i].path(); } else { if (++files == 1) file = response.value[i].name(); } } if (directories == 0) { Testsuite::logPrintf("Info! %u files listed, first one is '%s'\n", files, file.c_str()); } else if (files == 0) { Testsuite::logPrintf("Info! %u directories listed, first one is '%s'\n", directories, directory.c_str()); } else { Testsuite::logPrintf("Info! %u directories and %u files listed\n", directories, files); Testsuite::logPrintf("Info! First directory is '%u' and first file is '%s'\n", directory.c_str(), file.c_str()); } } void CloudTests::directoryCreatedCallback(Cloud::Storage::BoolResponse response) { ConfParams.setCloudTestCallbackCalled(true); if (response.value) { Testsuite::logPrintf("Info! Directory created!\n"); } else { Testsuite::logPrintf("Info! Such directory already exists!\n"); } } void CloudTests::errorCallback(Networking::ErrorResponse response) { ConfParams.setCloudTestErrorCallbackCalled(true); Testsuite::logPrintf("Info! Error Callback was called\n"); Testsuite::logPrintf("Info! code = %ld, message = %s\n", response.httpResponseCode, response.response.c_str()); } /** This test calls Storage::info(). */ TestExitStatus CloudTests::testInfo() { ConfParams.setCloudTestCallbackCalled(false); ConfParams.setCloudTestErrorCallbackCalled(false); if (CloudMan.getCurrentStorage() == nullptr) { Testsuite::logPrintf("Couldn't find connected Storage\n"); return kTestFailed; } Common::String info = Common::String::format( "Welcome to the Cloud test suite!\n" "We're going to use the %s cloud storage which is connected right now.\n\n" "Testing Cloud Storage API info() method.\n" "In this test we'll try to list user infomation.", CloudMan.getCurrentStorage()->name().c_str() ); if (Testsuite::handleInteractiveInput(info, "OK", "Skip", kOptionRight)) { Testsuite::logPrintf("Info! Skipping test : info()\n"); return kTestSkipped; } if (CloudMan.info( new Common::GlobalFunctionCallback(&infoCallback), new Common::GlobalFunctionCallback(&errorCallback) ) == nullptr) { Testsuite::logPrintf("Warning! No Request is returned!\n"); } if (!waitForCallbackMore()) return kTestSkipped; Testsuite::clearScreen(); if (ConfParams.isCloudTestErrorCallbackCalled()) { Testsuite::logPrintf("Error callback was called\n"); return kTestFailed; } Testsuite::logDetailedPrintf("Info was displayed\n"); return kTestPassed; } TestExitStatus CloudTests::testDirectoryListing() { ConfParams.setCloudTestCallbackCalled(false); ConfParams.setCloudTestErrorCallbackCalled(false); if (CloudMan.getCurrentStorage() == nullptr) { Testsuite::logPrintf("Couldn't find connected Storage\n"); return kTestFailed; } Common::String info = "Testing Cloud Storage API listDirectory() method.\n" "In this test we'll try to list root directory."; if (Testsuite::handleInteractiveInput(info, "OK", "Skip", kOptionRight)) { Testsuite::logPrintf("Info! Skipping test : listDirectory()\n"); return kTestSkipped; } if (CloudMan.listDirectory( "", new Common::GlobalFunctionCallback(&directoryListedCallback), new Common::GlobalFunctionCallback(&errorCallback) ) == nullptr) { Testsuite::logPrintf("Warning! No Request is returned!\n"); } if (!waitForCallbackMore()) return kTestSkipped; Testsuite::clearScreen(); if (ConfParams.isCloudTestErrorCallbackCalled()) { Testsuite::logPrintf("Error callback was called\n"); return kTestFailed; } Testsuite::logDetailedPrintf("Directory was listed\n"); return kTestPassed; } TestExitStatus CloudTests::testDirectoryCreating() { ConfParams.setCloudTestCallbackCalled(false); ConfParams.setCloudTestErrorCallbackCalled(false); if (CloudMan.getCurrentStorage() == nullptr) { Testsuite::logPrintf("Couldn't find connected Storage\n"); return kTestFailed; } Common::String info = "Testing Cloud Storage API createDirectory() method.\n" "In this test we'll try to create a 'testbed' directory."; if (Testsuite::handleInteractiveInput(info, "OK", "Skip", kOptionRight)) { Testsuite::logPrintf("Info! Skipping test : createDirectory()\n"); return kTestSkipped; } Common::String info2 = "We'd list the root directory, create the directory and the list it again.\n" "If all goes smoothly, you'd notice that there are more directories now."; Testsuite::displayMessage(info2); // list root directory if (CloudMan.listDirectory( "", new Common::GlobalFunctionCallback(&directoryListedCallback), new Common::GlobalFunctionCallback(&errorCallback) ) == nullptr) { Testsuite::logPrintf("Warning! No Request is returned!\n"); } if (!waitForCallbackMore()) return kTestSkipped; Testsuite::clearScreen(); if (ConfParams.isCloudTestErrorCallbackCalled()) { Testsuite::logPrintf("Error callback was called\n"); return kTestFailed; } ConfParams.setCloudTestCallbackCalled(false); // create 'testbed' if (CloudMan.getCurrentStorage()->createDirectory( "/testbed", new Common::GlobalFunctionCallback(&directoryCreatedCallback), new Common::GlobalFunctionCallback(&errorCallback) ) == nullptr) { Testsuite::logPrintf("Warning! No Request is returned!\n"); } if (!waitForCallbackMore()) return kTestSkipped; Testsuite::clearScreen(); if (ConfParams.isCloudTestErrorCallbackCalled()) { Testsuite::logPrintf("Error callback was called\n"); return kTestFailed; } ConfParams.setCloudTestCallbackCalled(false); // list it again if (CloudMan.listDirectory( "", new Common::GlobalFunctionCallback(&directoryListedCallback), new Common::GlobalFunctionCallback(&errorCallback) ) == nullptr) { Testsuite::logPrintf("Warning! No Request is returned!\n"); } if (!waitForCallbackMore()) return kTestSkipped; Testsuite::clearScreen(); if (ConfParams.isCloudTestErrorCallbackCalled()) { Testsuite::logPrintf("Error callback was called\n"); return kTestFailed; } if (Testsuite::handleInteractiveInput("Was the CloudMan able to create a 'testbed' directory?", "Yes", "No", kOptionRight)) { Testsuite::logDetailedPrintf("Error! Directory was not created!\n"); return kTestFailed; } Testsuite::logDetailedPrintf("Directory was created\n"); return kTestPassed; } } // End of namespace Testbed