Package com.force.sdk.codegen

Source Code of com.force.sdk.codegen.JPAClassGeneratorFTest

/**
* Copyright (c) 2011, salesforce.com, inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided
* that the following conditions are met:
*
*    Redistributions of source code must retain the above copyright notice, this list of conditions and the
*    following disclaimer.
*
*    Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
*    the following disclaimer in the documentation and/or other materials provided with the distribution.
*
*    Neither the name of salesforce.com, inc. nor the names of its contributors may be used to endorse or
*    promote products derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

package com.force.sdk.codegen;

import static org.testng.Assert.*;

import java.io.File;
import java.io.IOException;
import java.util.Collections;
import java.util.Set;

import org.apache.commons.io.FileUtils;
import org.testng.annotations.AfterClass;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;

import com.force.sdk.codegen.filter.ObjectNameWithRefFilter;
import com.force.sdk.connector.ForceServiceConnector;
import com.force.sdk.qa.util.PropsUtil;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Sets;
import com.sforce.ws.ConnectionException;

/**
* Functional tests for JPACodeGenerator.
*
* @author Tim Kral
*/
public class JPAClassGeneratorFTest {

    private static final String TMP_DIR = System.getProperty("java.io.tmpdir") + File.separator + "JPAClassGeneratorFTest";
   
    @AfterClass(alwaysRun = true)
    public void classTearDown() throws IOException {
        FileUtils.deleteDirectory(new File(TMP_DIR));
    }

    @DataProvider
    public Object[][] customAndStandardObjectsWithCounts() {
//        Set<String> standardClasses = ImmutableSet.<String>of("Account.java", "CallCenter.java"
//                , "Contact.java", "Group.java", "Organization.java", "Profile.java", "User.java"
//                , "UserLicense.java", "UserRole.java");

        return new Object[][] {
                { ImmutableSet.<String>of("Opportunity"), ImmutableSet.<String>of(
                        "Account.java", "BusinessProcess.java", "CallCenter.java", "Campaign.java", "Contact.java"
                      , "Group.java", "Opportunity.java", "Organization.java", "Pricebook2.java", "Profile.java"
                      , "RecordType.java", "User.java", "UserLicense.java", "UserRole.java") }
              , { ImmutableSet.<String>of("User"), ImmutableSet.<String>of("Account.java", "CallCenter.java"
                      , "Contact.java", "Group.java", "Organization.java", "Profile.java", "User.java"
                      , "UserLicense.java", "UserRole.java") }
//              , { new ArrayList<String>(ForceJPAClassGenerator.STANDARD_OBJECTS), standardClasses }
              , { ImmutableSet.<String>of(""), Collections.<String>emptySet() }
              , { Sets.<String>newHashSet((String) null), Collections.<String>emptySet() }
        };
    }

    @Test(dataProvider = "customAndStandardObjectsWithCounts")
    public void testGenerateClassesWithRefs(Set<String> objectNames, Set<String> expectedFileNames)
    throws ConnectionException, IOException {
        try {
            ForceJPAClassGenerator generator = new ForceJPAClassGenerator();
            generator.setPackageName("com.ftest.model");
            generator.setObjectFilter(new ObjectNameWithRefFilter(objectNames));
           
            ForceServiceConnector connector = new ForceServiceConnector(PropsUtil.FORCE_SDK_TEST_NAME);
           
            int classCount = generator.generateCode(connector.getConnection(), new File(TMP_DIR));
            int expectedCount = expectedFileNames.size();

            File[] actualFiles =
                new File(TMP_DIR + File.separator + "com" + File.separator + "ftest" + File.separator + "model")
                    .listFiles();
            int fileCount = actualFiles == null ? 0 : actualFiles.length;

            assertEquals(classCount, expectedCount, "Unexpected number of generated classes.");
            assertEquals(fileCount, expectedCount, "Unexpected number of generated files.");
            assertGeneratedFileNamesMatch(actualFiles, expectedFileNames);
        } finally {
            FileUtils.deleteDirectory(new File(TMP_DIR));
        }
    }

    private void assertGeneratedFileNamesMatch(File[] files, Set<String> fileNames) {
        if (files == null) {
            assertEquals(0, fileNames.size(), "Mismatched number of fileNames for files");
            return;
        }
       
        assertEquals(files.length, fileNames.size(), "Mismatched number of fileNames for files");

        for (int i = 0; i < files.length; i++) {
            assertTrue(fileNames.contains(files[i].getName()), "Unexpected filename: " + files[i]);
        }
    }
   
}
TOP

Related Classes of com.force.sdk.codegen.JPAClassGeneratorFTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.