autotest: use upstart_restart/stop in camerabox

To ignore error from instance not exist when restart or stop
cros-camera, replace host.run(...) with host.upstart_stop/restart in
camerabox_utils.py

BUG=b:159671034
TEST=test_that <DUT>
cheets_CTS_P.9.0_r12.x86.CtsCameraTestCases.camerabox.front
--args='chart=<CHART>'

Change-Id: I8cf049a925734eb0770e039fa410a356ab762941
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/autotest/+/2259415
Tested-by: Kuo Jen Wei <[email protected]>
Reviewed-by: Hung-yu Wu <[email protected]>
Reviewed-by: Jaydeep Mehta <[email protected]>
Auto-Submit: Kuo Jen Wei <[email protected]>
Commit-Queue: Jaydeep Mehta <[email protected]>
diff --git a/server/cros/camerabox_utils.py b/server/cros/camerabox_utils.py
index da371a0..0f222f8 100644
--- a/server/cros/camerabox_utils.py
+++ b/server/cros/camerabox_utils.py
@@ -171,7 +171,7 @@
                         'enable_external_camera': False
                 }),
                 owner='arc-camera')
-        self.host.run('restart cros-camera')
+        self.host.upstart_restart('cros-camera')
 
         logging.info('Replace camera profile in ARC++ container')
         profile = self._read_file(self.CAMERA_PROFILE_PATH)
@@ -181,9 +181,9 @@
 
     @contextlib.contextmanager
     def _stop_camera_service(self):
-        self.host.run('stop cros-camera')
+        self.host.upstart_stop('cros-camera')
         yield
-        self.host.run('start cros-camera')
+        self.host.upstart_restart('cros-camera')
 
     def log_camera_scene(self):
         """Capture an image from camera as the log for debugging scene related
@@ -207,7 +207,7 @@
         """Cleanup camera filter."""
         logging.info('Remove filter option and restore camera service')
         self.host.run('rm', args=('-f', self.TEST_CONFIG_PATH))
-        self.host.run('restart cros-camera')
+        self.host.upstart_restart('cros-camera')
 
         logging.info('Restore camera profile in ARC++ container')
         self.host.run('restart ui')