ASSecondaryTableTestpublic class ASSecondaryTableTest extends EjbTest implements com.sun.enterprise.tools.verifier.tests.ejb.EjbCheck
Methods Summary |
---|
public Result | check(com.sun.enterprise.deployment.EjbDescriptor descriptor)
Result result = getInitializedResult();
ComponentNameConstructor compName = new ComponentNameConstructor(descriptor);
boolean oneFailed = false;
boolean notApp = false;
//<addition author="irfan@sun.com" [bug/rfe]-id="4715917" >
/*Set keys = descriptor.getEjbBundleDescriptor().getIasCmpMappingsKeys();
SunCmpMappings iasCmpMappings=null;
String forPmConfig=null;*/
SunCmpMappings iasCmpMappings = descriptor.getEjbBundleDescriptor().getIasCmpMappings();
String forPmConfig = com.sun.enterprise.deployment.EjbBundleXmlReader.IAS_CMP_MAPPING_JAR_ENTRY;
//</addition>
SunCmpMapping[] allIasCmpMapping=null;
SunCmpMapping iasCmpMapping=null;
/////test vars
EntityMapping[] entityMapping=null;
String tableName=null;
ColumnPair[] columnPair=null;
//FetchedWith fetchedWith=null;
//<addition author="irfan@sun.com" [bug/rfe]-id="4715917" >
if(iasCmpMappings!=null)
{
/*if(keys!=null && keys.size()>0)
{
Iterator it = keys.iterator();
while(it.hasNext()) {
forPmConfig=(String) it.next();
iasCmpMappings= descriptor.getEjbBundleDescriptor().getIasCmpMappings(forPmConfig);*/
//</addition>
allIasCmpMapping=iasCmpMappings.getSunCmpMapping();
for(int rep=0;rep<allIasCmpMapping.length;rep++){
iasCmpMapping=allIasCmpMapping[rep];
//test logic
entityMapping=iasCmpMapping.getEntityMapping();
if(entityMapping == null || entityMapping.length==0){//this should never happen
oneFailed = true;
result.failed(smh.getLocalString(getClass().getName()+".failed",
"FAILED [AS-CMP-MAPPING] : entity-mapping is NOT a valid entry, in the mapping file [ {0}], "+
"of the ejb archive [ {1} ]. "+
"Either null or empty.",
new Object[]{forPmConfig,descriptor.getName()}));
continue;
}
for(int rep1=0;rep1<entityMapping.length;rep1++){
SecondaryTable[] secTable=null;
secTable=entityMapping[rep1].getSecondaryTable();
String forEjb=entityMapping[rep1].getEjbName();
//since cmrmapping can be (0..n)
if(secTable == null || secTable.length==0){
result.notApplicable(smh.getLocalString (getClass().getName() + ".notApplicable",
"NOT APPLICABLE [AS-CMP-MAPPING] : There is no secondary-table element present for ejb [ {0} ]in the mapping file [ {1}], "+
"of the ejb archive [ {2} ]. ",
new Object[]{forEjb,forPmConfig,descriptor.getName()}));
continue;
}
for(int rep11=0;rep11<secTable.length;rep11++){
tableName=secTable[rep11].getTableName();
columnPair=secTable[rep11].getColumnPair();
//fetchedWith =cmrFieldMapping[rep11].getFetchedWith();
if(validateCmrFieldName(tableName)){
result.passed(smh.getLocalString(getClass().getName()+".passed",
"PASSED [AS-CMP-MAPPING] : secondary-table->table-name [{0} ] is a valid entry, in the mapping file [ {1}], "+
"of the ejb archive [ {2} ]. ",
new Object[]{tableName,forPmConfig,descriptor.getName()}));
}else{
oneFailed = true;
result.failed(smh.getLocalString(getClass().getName()+".failed1",
"FAILED [AS-CMP-MAPPING] : secondary-table->table-name [{0} ] is NOT a valid entry, in the mapping file [ {1}], "+
"of the ejb archive [ {2} ]. "+
"Either null or empty.",
new Object[]{tableName,forPmConfig,descriptor.getName()}));
}
if(validateColumnPair(columnPair,result,forPmConfig,descriptor.getName())){
result.passed(smh.getLocalString(getClass().getName()+".passed1",
"PASSED [AS-CMP-MAPPING] : All the secondary-table->column-pair for field-name [{0} ], are valid, in the mapping file [ {1}], "+
"of the ejb archive [ {2} ]. ",
new Object[]{tableName,forPmConfig,descriptor.getName()}));
}else{
oneFailed = true;
result.failed(smh.getLocalString(getClass().getName()+".failed2",
"FAILED [AS-CMP-MAPPING] : At least one secondary-table->column-pair, for field-name [{0} ] is NOT a valid entry, in the mapping file [ {1}], "+
"of the ejb archive [ {2} ]. "+
"Either null or empty.",
new Object[]{tableName,forPmConfig,descriptor.getName()}));
}
}//end for(int rep1=0;rep<entityMapping.length;rep1++){
}
}
//} 4715917 irfan
}
else
{
notApp = true;
result.notApplicable(smh.getLocalString
(getClass().getName() + ".notApplicable",
"NOT APPLICABLE [AS-CMP-MAPPING] : There is no ias-cmp-mappings file present, within the ejb archive [ {0} ].",
new Object[] {descriptor.getName()}));
}
if (oneFailed) {
result.setStatus(Result.FAILED);
} else if(notApp) {
result.setStatus(Result.NOT_APPLICABLE);
}else {
result.setStatus(Result.PASSED);
}
return result;
| boolean | validateCmrFieldName(java.lang.String name)
boolean valid=false;
if(name !=null && !name.trim().equals("")){
valid =true;
}
return valid;
| boolean | validateColumnPair(ColumnPair[] columnPair, Result result, java.lang.String forPmConfig, java.lang.String descriptorName)
boolean valid=true;
String[] colPair=null;
String col1=null;
String col2=null;
if(columnPair ==null && columnPair.length ==0 ){
result.failed(smh.getLocalString(getClass().getName()+".failed3",
"ERROR [AS-CMP-MAPPING] : The secondary-table->column-pair is EMPTY/NULL, in the mapping file [ {0}], "+
"of the ejb archive [ {1} ]. "+
"Atleast one column of the pair, null or empty.",
new Object[]{forPmConfig,descriptorName}));
valid =false;
return valid;
} else{
for(int rep=0;rep<columnPair.length;rep++)
{
boolean pairValid=false;
if(columnPair[rep] !=null ){
colPair=columnPair[rep].getColumnName();
if(colPair !=null && colPair.length==2){
col1=colPair[0];
col2=colPair[1];
if(col1!=null && !col1.trim().equals("") &&
col2!=null && !col2.trim().equals("")){
pairValid=true;
}
}
}
if(pairValid){
result.passed(smh.getLocalString(getClass().getName()+".passed2",
"PASSED [AS-CMP-MAPPING] : The cmr-field-mapping->column-pair entry [ {0}/{1} ] is valid, in the mapping file [ {2}], "+
"of the ejb archive [ {3} ]. ",
new Object[]{col1,col2,forPmConfig,descriptorName}));
}else{
valid = false;
result.failed(smh.getLocalString(getClass().getName()+".failed4",
"FAILED [AS-CMP-MAPPING] : The secondary-table->column-pair entry [ {0}/{1} ] , is NOT a valid entry, in the mapping file [ {2}], "+
"of the ejb archive [ {3} ]. "+
"Atleast one column of the pair, null or empty.",
new Object[]{col1,col2,forPmConfig,descriptorName}));
}
}
}
return valid;
|
|