LOG(ERROR) << "Failed to initialize pkgmgr interface";
return;
}
- auto backend = CreateInstaller(pkgmgr);
+ AppInstallerPtr backend;
int i;
for (i = backend->StepCount() - 1; i >= 0; i--) {
- backend->AddStepAtIndex<ci::configuration::StepFail>(i);
+ backend = CreateFailExpectedInstaller(pkgmgr, i);
LOG(DEBUG) << "StepFail is inserted at: " << i;
ASSERT_EQ(ci::AppInstaller::Result::ERROR, backend->Run());
if (!validator())
BackendInterface::CommandResult BackendInterface::RunInstallerWithPkgrmgr(
ci::PkgMgrPtr pkgmgr) const {
- std::unique_ptr<ci::AppInstaller> installer = CreateInstaller(pkgmgr);
+ std::unique_ptr<ci::AppInstaller> installer;
switch (mode_) {
case RequestResult::FAIL:
- installer->AddStep<ci::configuration::StepFail>();
+ installer = CreateFailExpectedInstaller(pkgmgr);
break;
default:
+ installer = CreateInstaller(pkgmgr);
break;
}
return installer->Run();
#include <manifest_parser/utils/version_number.h>
#include <common/utils/subprocess.h>
-#include <common/step/configuration/step_fail.h>
#include <common/utils/user_util.h>
#include <common/utils/file_util.h>
#include <common/request.h>
virtual AppQueryInterfacePtr CreateQueryInterface() const = 0;
virtual AppInstallerPtr CreateInstaller(
common_installer::PkgMgrPtr pkgmgr) const = 0;
+ virtual AppInstallerPtr CreateFailExpectedInstaller(
+ common_installer::PkgMgrPtr pkgmgr, int fail_at = -1) const = 0;
};
bool CheckAvailableExternalPath();