protected function setUp()
 {
     $this->loader = new XMLLoader();
     $DD = $this->loader->load(DD);
     $DDP = new DataDescriptionParser($DD);
     $data = $DDP->parseData();
     $this->attributes = $data['DD']['transformationDictionary'];
     $FL = $this->loader->load(FL);
     $FLP = new FeatureListParser($FL, 'en');
     $data = $FLP->parseData();
     $this->IMs = $data['interestMeasures'];
 }
 protected function setUp()
 {
     $loader = new XMLLoader();
     $DD = $loader->load(DD);
     $DDP = new DataDescriptionParser($DD);
     $data = $DDP->parseData();
     $this->attributes = $data['DD']['transformationDictionary'];
     $FL = $loader->load(FL);
     $FLP = new FeatureListParser($FL, 'en');
     $data = $FLP->parseData();
     $this->coefficients = $data['BBA']['coefficients'];
 }
 protected function setUp()
 {
     $loader = new XMLLoader();
     $this->ERAssociationRules = $loader->load(ERASSOCIATIONRULES);
     $this->ERTaskSettingRules = $loader->load(ERTASKSETTING);
     $this->ERARQueryRules = $loader->load(ERARQUERY);
     $DD = $loader->load(DD);
     $DDP = new DataDescriptionParser($DD);
     $data = $DDP->parseData();
     $this->attributes = $data['DD']['transformationDictionary'];
     $FL = $loader->load(FL);
     $FLP = new FeatureListParser($FL, 'en');
     $data = $FLP->parseData();
     $this->IMs = $data['interestMeasures'];
 }
Example #4
0
 public function parseData()
 {
     $DDParser = new DataDescriptionParser($this->DD);
     $this->data = array_merge_recursive($this->data, $DDParser->parseData());
     $this->data['FLs'] = array();
     foreach ($this->FLs as $FL) {
         $FLParser = new FeatureListParser($FL, $this->lang);
         array_push($this->data['FLs'], $FLParser->parseData());
     }
     usort($this->data['FLs'], array('IZI\\Parser\\DataParser', 'sortFLs'));
     $FGCParser = new FieldGroupConfigParser($this->FGC, $this->data['DD'], $this->data['FLs'][0]['BBA']['coefficients'], $this->lang);
     $this->data['FGC'] = $FGCParser->parseConfig();
     $ERParser = new RulesParser($this->ER, $this->data['DD'], $this->data['FLs'][0]['interestMeasures']);
     $this->data = array_merge_recursive($this->data, $ERParser->parseData());
     $ETreeParser = new ETreeParser($this->ETree);
     $this->data = array_merge_recursive($this->data, $ETreeParser->parseData());
     return $this->data;
 }
 protected function setUp()
 {
     $loader = new XMLLoader();
     $this->ER = $loader->load(ERTASKSETTING);
     $this->ERXPath = new DOMXPath($this->ER);
     $CP = new ConnectiveParser($this->ER, $this->ERXPath);
     $DD = $loader->load(DD);
     $DDP = new DataDescriptionParser($DD);
     $data = $DDP->parseData();
     $this->attributes = $data['DD']['transformationDictionary'];
     $FL = $loader->load(FL);
     $FLP = new FeatureListParser($FL, 'en');
     $data = $FLP->parseData();
     $this->IMs = $data['interestMeasures'];
     $this->DBAP = new DBAParser($this->ER, $this->ERXPath, $CP);
     $this->DBAP->parseDBAs();
     $this->BBAP = new BBAParser($this->ER, $this->ERXPath);
     $this->BBAP->parseBBAs();
 }
 protected function setUp()
 {
     $this->ER = new \DOMDocument('1.0', 'UTF-8');
     $this->ER->load(ERARQUERY, LIBXML_NOBLANKS);
     $this->ERXPath = new \DOMXPath($this->ER);
     $CP = new ConnectiveParser($this->ER, $this->ERXPath);
     $loader = new XMLLoader();
     $DD = $loader->load(DD);
     $DDP = new DataDescriptionParser($DD);
     $data = $DDP->parseData();
     $this->attributes = $data['DD']['transformationDictionary'];
     $FL = $loader->load(FL);
     $FLP = new FeatureListParser($FL, 'en');
     $data = $FLP->parseData();
     $this->IMs = $data['interestMeasures'];
     $this->DBAP = new DBAParser($this->ER, $this->ERXPath, $CP);
     $this->DBAP->parseDBAs();
     $this->BBAP = new BBAParser($this->ER, $this->ERXPath);
     $this->BBAP->parseBBAs();
 }
 public function testParseData()
 {
     $FLP = new FeatureListParser($this->FL, 'en');
     $data = $FLP->parseData();
     // user interface
     // display mode
     $this->assertEquals(true, $data['miningMode']);
     // rule pattern
     // rule patterns
     $this->assertEquals(4, count($data['rulePattern']));
     // rule pattern name
     $this->assertTrue(isset($data['rulePattern']['Antecedent']));
     // rule pattern minimal number of BBAs
     $this->assertEquals(1, $data['rulePattern']['Antecedent']['minNumberOfBBAs']);
     // rule pattern maximal number of BBAs
     $this->assertEquals(99999, $data['rulePattern']['Antecedent']['maxNumberOfBBAs']);
     // interest measures
     // interest measures treshold
     $this->assertEquals('required', $data['interestMeasures']['treshold']);
     // interest measure types
     $this->assertEquals(3, count($data['interestMeasures']['types']));
     // interest measure name
     $this->assertTrue(isset($data['interestMeasures']['types']['SUPP']));
     // interest measure default
     $this->assertTrue($data['interestMeasures']['types']['SUPP']['default']);
     $this->assertFalse($data['interestMeasures']['types']['AAD']['default']);
     // interest measure localized name
     $this->assertEquals('Support', $data['interestMeasures']['types']['SUPP']['localizedName']);
     // interest measure explanation
     $this->assertEquals('Relative support of the rule', $data['interestMeasures']['types']['SUPP']['explanation']);
     // interest measure field name
     $this->assertEquals('threshold', $data['interestMeasures']['types']['SUPP']['fields'][0]['name']);
     // interest measure field localized name
     $this->assertEquals('threshold value', $data['interestMeasures']['types']['SUPP']['fields'][0]['localizedName']);
     // interest measure field validation min value
     $this->assertEquals(0, $data['interestMeasures']['types']['SUPP']['fields'][0]['minValue']);
     // interest measure field validation min value inclusive
     $this->assertEquals(false, $data['interestMeasures']['types']['SUPP']['fields'][0]['minValueInclusive']);
     // interest measure field validation max value
     $this->assertEquals(1, $data['interestMeasures']['types']['SUPP']['fields'][0]['maxValue']);
     // interest measure field validation max value inclusive
     $this->assertEquals(true, $data['interestMeasures']['types']['SUPP']['fields'][0]['maxValueInclusive']);
     // interest measure field validation datatype
     $this->assertEquals('double', $data['interestMeasures']['types']['SUPP']['fields'][0]['dataType']);
     // interest measure combinations
     $this->assertEquals(5, count($data['interestMeasures']['combinations']));
     // interest measure combination
     $this->assertEquals(array('FUI', 'SUPP'), $data['interestMeasures']['combinations'][0]);
     // BBAs
     // BBA coefficient
     $this->assertEquals('required', $data['BBA']['coefficient']);
     // BBA name
     $this->assertTrue(isset($data['BBA']['coefficients']['One category']));
     // BBA localized name
     $this->assertEquals('One category', $data['BBA']['coefficients']['One category']['localizedName']);
     // BBA explanation
     $this->assertEquals('One category can be selected', $data['BBA']['coefficients']['One category']['explanation']);
     // BBA field name
     $this->assertTrue(isset($data['BBA']['coefficients']['One category']['fields']['category']));
     // BBA field localized name
     $this->assertEquals('category', $data['BBA']['coefficients']['One category']['fields']['category']['localizedName']);
     // BBA field validation datatype
     $this->assertEquals('string', $data['BBA']['coefficients']['One category']['fields']['category']['dataType']);
     // BBA field validation min value
     $this->assertEquals(1, $data['BBA']['coefficients']['Subset']['fields']['maxLength']['minValue']);
     // BBA field validation min value inclusive
     $this->assertEquals(true, $data['BBA']['coefficients']['Subset']['fields']['maxLength']['minValueInclusive']);
     // BBA field validation max value
     $this->assertEquals(5, $data['BBA']['coefficients']['Subset']['fields']['maxLength']['maxValue']);
     // BBA field validation max value inclusive
     $this->assertEquals(true, $data['BBA']['coefficients']['Subset']['fields']['maxLength']['maxValueInclusive']);
     // BBA field validation previous
     $this->assertEquals('isSmallerOrEqual', $data['BBA']['coefficients']['Subset']['fields']['maxLength']['previous']);
     // DBAs
     // DBA max number of levels
     $this->assertEquals(3, $data['DBA']['maxLevels']);
     // DBA constraints
     $this->assertEquals(3, count($data['DBA']['constraints']));
     // DBA level1 constraint
     $this->assertTrue(isset($data['DBA']['constraints']['antecedent']['Conjunction']));
     // DBA level1 constraint allowed
     $this->assertEquals(true, $data['DBA']['constraints']['antecedent']['Conjunction']);
 }