Coverage Report - org.kuali.student.enrollment.class2.acal.keyvalue.AtpStateKeyValues
 
Classes in this File Line Coverage Branch Coverage Complexity
AtpStateKeyValues
0%
0/25
0%
0/10
4
 
 1  
 /**
 2  
  * Copyright 2012 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  *
 15  
  * Created by Li Pan on 3/6/12
 16  
  */
 17  
 package org.kuali.student.enrollment.class2.acal.keyvalue;
 18  
 
 19  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 20  
 import org.kuali.rice.core.api.util.ConcreteKeyValue;
 21  
 import org.kuali.rice.core.api.util.KeyValue;
 22  
 import org.kuali.rice.krad.uif.control.UifKeyValuesFinderBase;
 23  
 import org.kuali.rice.krad.uif.view.ViewModel;
 24  
 import org.kuali.student.enrollment.acal.service.AcademicCalendarService;
 25  
 import org.kuali.student.enrollment.class2.acal.form.CalendarSearchForm;
 26  
 import org.kuali.student.enrollment.class2.acal.util.CalendarConstants;
 27  
 import org.kuali.student.r2.common.constants.CommonServiceConstants;
 28  
 import org.kuali.student.r2.common.dto.ContextInfo;
 29  
 import org.kuali.student.r2.core.state.dto.StateInfo;
 30  
 import org.kuali.student.mock.utilities.TestHelper;
 31  
 
 32  
 import javax.xml.namespace.QName;
 33  
 import java.io.Serializable;
 34  
 import java.util.ArrayList;
 35  
 import java.util.List;
 36  
 
 37  
 /**
 38  
  * This class //TODO ...
 39  
  *
 40  
  * @author Kuali Student Team
 41  
  */
 42  0
 public class AtpStateKeyValues extends UifKeyValuesFinderBase implements Serializable {
 43  
 
 44  
     private static final long serialVersionUID = 1L;
 45  
 
 46  
     private transient AcademicCalendarService acalService;
 47  
 
 48  
     @Override
 49  
     public List<KeyValue> getKeyValues(ViewModel model) {
 50  0
         CalendarSearchForm form = (CalendarSearchForm)model;
 51  0
         String atpType = form.getCalendarType();
 52  
 
 53  0
         List<KeyValue> keyValues = new ArrayList<KeyValue>();
 54  
 
 55  
         //TODO:Build real context.
 56  0
         ContextInfo context = TestHelper.getContext1();
 57  
 
 58  
 
 59  
         try {
 60  0
             List<StateInfo> states = new ArrayList<StateInfo>();
 61  
 
 62  0
             if(atpType.equals(CalendarConstants.HOLIDAYCALENDER)){
 63  0
                 states = getAcalService().getHolidayCalendarStates(context);
 64  0
             }else if(atpType.equals(CalendarConstants.ACADEMICCALENDER)) {
 65  0
                 states = getAcalService().getAcademicCalendarStates(context);
 66  0
             }else if(atpType.equals(CalendarConstants.TERM)){
 67  0
                 states = getAcalService().getTermStates(context);
 68  
             }
 69  
 
 70  0
             for (StateInfo state : states) {
 71  0
                 ConcreteKeyValue keyValue = new ConcreteKeyValue();
 72  0
                 keyValue.setKey(state.getKey());
 73  0
                 keyValue.setValue(state.getName());
 74  0
                 keyValues.add(keyValue);
 75  0
             }
 76  0
         } catch (Exception e) {
 77  0
             e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
 78  0
         }
 79  
 
 80  0
         return keyValues;
 81  
     }
 82  
 
 83  
     public AcademicCalendarService getAcalService() {
 84  0
         if(acalService == null) {
 85  0
             acalService = (AcademicCalendarService) GlobalResourceLoader.getService(new QName(CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "acal", "AcademicCalendarService"));
 86  
         }
 87  0
         return this.acalService;
 88  
     }
 89  
 }