You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by avikganguly01 <gi...@git.apache.org> on 2017/10/08 16:14:32 UTC

[GitHub] fineract pull request #415: Extend-mifos-data-import-tool-all-modules-popula...

Github user avikganguly01 commented on a diff in the pull request:

    https://github.com/apache/fineract/pull/415#discussion_r143358027
  
    --- Diff: fineract-provider/src/integrationTest/java/org/apache/fineract/integrationtests/bulkimport/importhandler/savings/SavingsImportHandlerTest.java ---
    @@ -0,0 +1,164 @@
    +/**
    + * Licensed to the Apache Software Foundation (ASF) under one
    + * or more contributor license agreements. See the NOTICE file
    + * distributed with this work for additional information
    + * regarding copyright ownership. The ASF licenses this file
    + * to you under the Apache License, Version 2.0 (the
    + * "License"); you may not use this file except in compliance
    + * with the License. You may obtain a copy of the License at
    + *
    + * http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing,
    + * software distributed under the License is distributed on an
    + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    + * KIND, either express or implied. See the License for the
    + * specific language governing permissions and limitations
    + * under the License.
    + */
    +package org.apache.fineract.integrationtests.bulkimport.importhandler.savings;
    +
    +import com.jayway.restassured.builder.RequestSpecBuilder;
    +import com.jayway.restassured.builder.ResponseSpecBuilder;
    +import com.jayway.restassured.specification.RequestSpecification;
    +import com.jayway.restassured.specification.ResponseSpecification;
    +import org.apache.fineract.infrastructure.bulkimport.constants.LoanConstants;
    +import org.apache.fineract.infrastructure.bulkimport.constants.SavingsConstants;
    +import org.apache.fineract.infrastructure.bulkimport.constants.TemplatePopulateImportConstants;
    +import org.apache.fineract.integrationtests.common.ClientHelper;
    +import org.apache.fineract.integrationtests.common.GroupHelper;
    +import org.apache.fineract.integrationtests.common.OfficeHelper;
    +import org.apache.fineract.integrationtests.common.Utils;
    +import org.apache.fineract.integrationtests.common.loans.LoanTransactionHelper;
    +import org.apache.fineract.integrationtests.common.organisation.StaffHelper;
    +import org.apache.fineract.integrationtests.common.savings.SavingsAccountHelper;
    +import org.apache.fineract.integrationtests.common.savings.SavingsProductHelper;
    +import org.apache.fineract.template.domain.Template;
    +import org.apache.poi.hssf.usermodel.HSSFWorkbook;
    +import org.apache.poi.ss.usermodel.Row;
    +import org.apache.poi.ss.usermodel.Sheet;
    +import org.apache.poi.ss.usermodel.Workbook;
    +import org.junit.Assert;
    +import org.junit.Before;
    +import org.junit.Test;
    +
    +import javax.ws.rs.core.HttpHeaders;
    +import javax.ws.rs.core.MediaType;
    +import java.io.*;
    +import java.text.ParseException;
    +import java.text.SimpleDateFormat;
    +import java.util.Date;
    +
    +public class SavingsImportHandlerTest {
    +    private ResponseSpecification responseSpec;
    +    private RequestSpecification requestSpec;
    +
    +    @Before
    +    public void setup() {
    +        Utils.initializeRESTAssured();
    +        this.requestSpec = new RequestSpecBuilder().build();
    +        this.requestSpec
    +                .header("Authorization",
    +                        "Basic "
    +                                + Utils.loginIntoServerAndGetBase64EncodedAuthenticationKey());
    +        this.responseSpec = new ResponseSpecBuilder().expectStatusCode(200)
    +                .build();
    +    }
    +
    +    @Test
    +    public void testSavingsImport() throws InterruptedException, IOException, ParseException {
    +
    +        requestSpec.header(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_JSON);
    +        //in order to populate helper sheets
    +        OfficeHelper officeHelper=new OfficeHelper(requestSpec,responseSpec);
    +        Integer outcome_office_creation=officeHelper.createOffice("02 May 2000");
    +        Assert.assertNotNull("Could not create office" ,outcome_office_creation);
    +
    +        //in order to populate helper sheets
    +        ClientHelper clientHelper=new ClientHelper(requestSpec,responseSpec);
    +        Integer outcome_client_creation=clientHelper.createClient(requestSpec,responseSpec);
    +        Assert.assertNotNull("Could not create client" ,outcome_client_creation);
    +
    +        //in order to populate helper sheets
    +        GroupHelper groupHelper=new GroupHelper(requestSpec,responseSpec);
    +        Integer outcome_group_creation=groupHelper.createGroup(requestSpec,responseSpec,true);
    +        Assert.assertNotNull("Could not create group" ,outcome_group_creation);
    +
    +        //in order to populate helper sheets
    +        StaffHelper staffHelper=new StaffHelper();
    +        Integer outcome_staff_creation =staffHelper.createStaff(requestSpec,responseSpec);
    +        Assert.assertNotNull("Could not create staff",outcome_staff_creation);
    +
    +        SavingsProductHelper savingsProductHelper=new SavingsProductHelper();
    +        String jsonSavingsProduct="{\"currencyCode\":\"USD\",\"digitsAfterDecimal\":2," +
    --- End diff --
    
    Use SavingsProductHelper


---