コード例 #1
0
 /**
  * This method creates config if it doesn't exist so test won't fail
  *
  */
 function createConfigIfNotExists()
 {
     if (!file_exists(MAX_PATH . '/var/' . OX_getHostName() . '.conf.php')) {
         $oConfig = new OA_Upgrade_Config();
         $oConfig->writeConfig(true);
     }
 }
コード例 #2
0
 function test_writeConfig()
 {
     TestEnv::restoreConfig();
     // TEST 1
     $hostAdmin = 'admin.mydomain.net';
     $_SERVER['HTTP_HOST'] = $hostDelivery = 'delivery.mydomain.net';
     $fileDefault = MAX_PATH . '/var/default.conf.php';
     $fileFake = MAX_PATH . '/var/' . $hostAdmin . '.conf.php';
     $fileReal = MAX_PATH . '/var/' . $hostDelivery . '.conf.php';
     if (file_exists($fileDefault)) {
         @copy($fileDefault, $fileDefault . '.bak');
         @unlink($fileDefault);
     }
     @unlink($fileReal);
     @unlink($fileFake);
     $oConf = new OA_Upgrade_Config();
     // Build the local conf array manually.
     $aConfig['webpath']['admin'] = $hostAdmin;
     $aConfig['webpath']['delivery'] = $hostDelivery;
     $aConfig['webpath']['deliverySSL'] = $hostDelivery;
     $oConf->setupConfigWebPath($aConfig['webpath']);
     $this->assertTrue($oConf->writeConfig(), 'Error writing config file');
     $this->assertTrue(file_exists($fileReal), 'Real config file does not exist');
     $this->assertTrue(file_exists($fileFake), 'Fake config file does not exist');
     $aRealConfig = @parse_ini_file($fileReal, true);
     $this->assertEqual($oConf->aConfig, $aRealConfig, 'Delivery config has incorrect values');
     $this->assertFalse(isset($aRealConfig['realConfig']));
     $this->assertTrue(isset($aRealConfig['openads']));
     $this->assertEqual($aRealConfig['openads']['installed'], 1);
     $this->assertEqual($aRealConfig['webpath']['admin'], $hostAdmin);
     $this->assertEqual($aRealConfig['webpath']['delivery'], $hostDelivery);
     $this->assertEqual($aRealConfig['webpath']['deliverySSL'], $hostDelivery);
     $aFakeConfig = @parse_ini_file($fileFake, true);
     $this->assertTrue(isset($aFakeConfig['realConfig']));
     $this->assertTrue($aFakeConfig['realConfig'], $hostDelivery);
     // default.conf.php only gets created if no other foreign confs exist
     if (file_exists($fileDefault)) {
         $aDefConfig = @parse_ini_file($fileDefault, true);
         $this->assertTrue(isset($aDefConfig['realConfig']));
         $this->assertTrue($aDefConfig['realConfig'], $hostDelivery);
         @unlink($fileDefault);
     }
     // Clean up
     @unlink($fileReal);
     @unlink($fileFake);
     TestEnv::restoreConfig();
     // TEST 2  : reverse the hosts
     $hostAdmin = 'admin.mydomain.net';
     $hostDelivery = 'delivery.mydomain.net';
     $fileReal = MAX_PATH . '/var/' . $hostAdmin . '.conf.php';
     $fileFake = MAX_PATH . '/var/' . $hostDelivery . '.conf.php';
     @unlink($fileAdmin);
     @unlink($fileDelivery);
     $oConf = new OA_Upgrade_Config();
     // Build the local conf array manually.
     $aConfig['webpath']['admin'] = $hostDelivery;
     $aConfig['webpath']['delivery'] = $hostAdmin;
     $aConfig['webpath']['deliverySSL'] = $hostAdmin;
     $oConf->setupConfigWebPath($aConfig['webpath']);
     $this->assertTrue($oConf->writeConfig(), 'Error writing config file');
     $this->assertTrue(file_exists($fileReal), 'Real config file does not exist');
     $this->assertTrue(file_exists($fileFake), 'Fake config file does not exist');
     $aRealConfig = @parse_ini_file($fileReal, true);
     $this->assertEqual($oConf->aConfig, $aRealConfig, 'Real config has incorrect values');
     $this->assertFalse(isset($aRealConfig['realConfig']));
     $this->assertTrue(isset($aRealConfig['openads']));
     $this->assertEqual($aRealConfig['openads']['installed'], 1);
     $this->assertEqual($aRealConfig['webpath']['admin'], $hostDelivery);
     $this->assertEqual($aRealConfig['webpath']['delivery'], $hostAdmin);
     $this->assertEqual($aRealConfig['webpath']['deliverySSL'], $hostAdmin);
     $aFakeConfig = @parse_ini_file($fileFake, true);
     $this->assertTrue(isset($aFakeConfig['realConfig']));
     $this->assertTrue($aFakeConfig['realConfig'], $hostAdmin);
     // default.conf.php only gets created if no other foreign confs exist
     if (file_exists($fileDefault)) {
         $aDefConfig = @parse_ini_file($fileDefault, true);
         $this->assertTrue(isset($aDefConfig['realConfig']));
         $this->assertTrue($aDefConfig['realConfig'], $hostAdmin);
         @unlink($fileDefault);
         @copy($fileDefault . '.bak', $fileDefault);
         @unlink($fileDefault . '.bak');
     }
     // Clean up
     @unlink($fileReal);
     @unlink($fileFake);
     TestEnv::restoreConfig();
 }
コード例 #3
0
 /**
  * A private method that writes out the new OpenX settings configuration
  * file after migrating over the admin account's preferences that have
  * now been changed into settings.
  *
  * @access private
  * @return boolean True if the config file is successfully written,
  *                 otherwise, false.
  */
 function _writeSettings()
 {
     $oConfiguration = new OA_Upgrade_Config();
     foreach ($this->aConfMap as $section => $aPairs) {
         foreach ($aPairs as $key => $value) {
             $value = $this->aConfNew[$section][$key];
             $oConfiguration->setValue($section, $key, $value);
         }
     }
     return $oConfiguration->writeConfig();
 }