コード例 #1
0
ファイル: compilation_tests.py プロジェクト: DavidCDean/mm
    def test_02_should_be_a_bad_compile(self):
        src = open(os.path.join(test_helper.base_test_directory,"test_workspace","unit test metadata project","src","classes","unittestapexclass.cls"), "w")
        src.write('public class unittestapexclass { public unittestapexclass() { String foo } }')
        src.close()

        mm_response = test_helper.compile(self, "unit test metadata project", [os.path.join(test_helper.base_test_directory,"test_workspace","unit test metadata project","src","classes","unittestapexclass.cls")])
        self.assertTrue(mm_response['State'] == 'Failed')
        result = test_helper.delete_apex_metadata(self, "unit test metadata project", [os.path.join(test_helper.base_test_directory,"test_workspace","unit test metadata project","src","classes","unittestapexclass.cls")])
コード例 #2
0
ファイル: compilation_tests.py プロジェクト: DavidCDean/mm
 def test_01_should_compile_with_tooling_api(self):         
     test_helper.create_project(self, "unit test metadata project")
     test_helper.create_apex_metadata(self, "unit test metadata project", "ApexClass", "unittestapexclass")
     mm_response = test_helper.compile(self, "unit test metadata project", [os.path.join(test_helper.base_test_directory,"test_workspace","unit test metadata project","src","classes","unittestapexclass.cls")])
     
     self.assertTrue(mm_response['State'] == 'Completed')
     if self.getTestApiVersion() <= 30:
         self.assertTrue(mm_response['CompilerErrors'] == '[]')
     else:
         self.assertTrue('DeployDetails' in mm_response)
         self.assertTrue(mm_response['DeployDetails']['componentSuccesses'] == [])
コード例 #3
0
ファイル: compilation_tests.py プロジェクト: z00162835/mm
    def test_01_should_compile_with_tooling_api(self):
        test_helper.create_project(self, "unit test metadata project")
        test_helper.create_apex_metadata(self, "unit test metadata project",
                                         "ApexClass", "unittestapexclass")
        mm_response = test_helper.compile(self, "unit test metadata project", [
            os.path.join(test_helper.base_test_directory, "test_workspace",
                         "unit test metadata project", "src", "classes",
                         "unittestapexclass.cls")
        ])

        self.assertTrue(mm_response['State'] == 'Completed')
        if self.getTestApiVersion() <= 30:
            self.assertTrue(mm_response['CompilerErrors'] == '[]')
        else:
            self.assertTrue('DeployDetails' in mm_response)
            self.assertTrue(
                mm_response['DeployDetails']['componentSuccesses'] == [])
コード例 #4
0
ファイル: compilation_tests.py プロジェクト: z00162835/mm
    def test_02_should_be_a_bad_compile(self):
        src = open(
            os.path.join(test_helper.base_test_directory, "test_workspace",
                         "unit test metadata project", "src", "classes",
                         "unittestapexclass.cls"), "w")
        src.write(
            'public class unittestapexclass { public unittestapexclass() { String foo } }'
        )
        src.close()

        mm_response = test_helper.compile(self, "unit test metadata project", [
            os.path.join(test_helper.base_test_directory, "test_workspace",
                         "unit test metadata project", "src", "classes",
                         "unittestapexclass.cls")
        ])
        self.assertTrue(mm_response['State'] == 'Failed')
        result = test_helper.delete_apex_metadata(
            self, "unit test metadata project", [
                os.path.join(test_helper.base_test_directory, "test_workspace",
                             "unit test metadata project", "src", "classes",
                             "unittestapexclass.cls")
            ])