コード例 #1
0
 def test_manifest_found_no_instructions(self):
     metric = MissingOsgiManifest('test', 'description of a test', metrics_logger=Mock()).configure(Mock(), False)
     metric.pre_files_scan('bad_plugin')
     self.assertEqual(metric.wants_file('META-INF/MANIFEST.MF'), True, "Should want to look at manifest")
     metric.on_read_line("this is a manifest, but it's a bad one.")
     metric.post_files_scan('bad_plugin')
     self.assertEqual(1, metric.value, "Should have a hit")
コード例 #2
0
 def test_manifest_found_no_instructions(self):
     metric = MissingOsgiManifest('test',
                                  'description of a test',
                                  metrics_logger=Mock()).configure(
                                      Mock(), False)
     metric.pre_files_scan('bad_plugin')
     self.assertEqual(metric.wants_file('META-INF/MANIFEST.MF'), True,
                      "Should want to look at manifest")
     metric.on_read_line("this is a manifest, but it's a bad one.")
     metric.post_files_scan('bad_plugin')
     self.assertEqual(1, metric.value, "Should have a hit")
コード例 #3
0
    def __init__(self, fast: bool, plugins_utility=BundledPluginsUtility(), maven_callable=MavenCallable):
        plugins_stop_condition = ['plugins-version', 'pluginsVersion']
        collectors = [GrepCount('plugins.version.one.plugins', lambda x: x == 'atlassian-plugin.xml',
                                'Should not be adding new version 1 plugins',
                                ['pluginsVersion="1"', 'plugins-version="1"'], plugins_stop_condition),
                      FileCount('plugins.count', lambda x: x == 'atlassian-plugin.xml',
                                'Count of plugins in JIRA codebase.').unchecked().neutral(),
                      GrepCountWithActivator('plugins.version.web.panels.to.soy',
                                             lambda x: x == 'atlassian-plugin.xml',
                                             'Should migrate web panels to soy templates',
                                             r'<\s*resource.+type\s*=\s*"velocity"',
                                             start_count=r'<\s*web-panel', stop_count=r'<\s*/\s*web-panel\s*>',
                                             use_regex=True),
                      FileCount('bundled.jars.in.plugins', lambda x: x.endswith('.jar'),
                                'Try and use provided jars instead of bundling your own. See '
                                'https://developer.atlassian.com/display/DOCS/How+to+Speed+Up+Plugin+Startup for more '
                                'details'),
                      MissingHostComponentsXml('plugins.missing.component.import.xml',
                          'Should be specifying a atlassian-plugins-host-components.xml to bypass host component '
                          'scanning. See https://developer.atlassian.com/display/DOCS/How+to+Speed+Up+Plugin+Startup#HowtoSpeedUpPluginStartup-Bypasshostcomponentscanning '
                          'for more details').unchecked(),
                      MissingOsgiManifest('plugins.missing.osgi.instructions',
                          'Should be specifying a non-empty instructions element so the SDK will generate an OSGi '
                          'manifest. See https://developer.atlassian.com/display/DOCS/How+to+Speed+Up+Plugin+Startup#HowtoSpeedUpPluginStartup-GeneratetheOSGimanifestatbuildtime '
                          'for more details'),
                      # Won't check the plugin xml minified until AMPS 4.2.4 is released.
                      PluginXmlMinified('plugins.xml.not.minified',
                          'Should be minifiying your atlassian-plugin.xml using plugin SDK version 4.2.4 or later').unchecked().rising()]

        super().__init__(collectors, 'Scan Bundled plugins JARS')
        self.plugins_utility = plugins_utility
        self.plugin_zip = None
        self.plugin_xml_info = None
        self.fast = fast
        self.maven_callable = maven_callable
コード例 #4
0
 def test_manifest_found_with_instructions(self):
     metric = MissingOsgiManifest('test',
                                  'description of a test',
                                  metrics_logger=Mock()).configure(
                                      Mock(), False)
     metric.pre_files_scan('good_plugin')
     self.assertEqual(metric.wants_file('META-INF/MANIFEST.MF'), True,
                      "Should want to look at manifest")
     metric.on_read_line("Import-Package: com.atlassian.awesome:1.0")
     self.assertEqual(0, metric.value, "Shouldn't have a hit")
コード例 #5
0
 def test_no_manifest_found(self):
     metric = MissingOsgiManifest('test',
                                  'description of a test',
                                  metrics_logger=Mock()).configure(
                                      Mock(), False)
     metric.pre_files_scan('bad_plugin')
     metric.post_files_scan('bad_plugin')
     self.assertEqual(1, metric.value, "Should have a hit")
コード例 #6
0
 def test_manifest_found_with_instructions(self):
     metric = MissingOsgiManifest('test', 'description of a test', metrics_logger=Mock()).configure(Mock(), False)
     metric.pre_files_scan('good_plugin')
     self.assertEqual(metric.wants_file('META-INF/MANIFEST.MF'), True, "Should want to look at manifest")
     metric.on_read_line("Import-Package: com.atlassian.awesome:1.0")
     self.assertEqual(0, metric.value, "Shouldn't have a hit")
コード例 #7
0
 def test_no_manifest_found(self):
     metric = MissingOsgiManifest('test', 'description of a test', metrics_logger=Mock()).configure(Mock(), False)
     metric.pre_files_scan('bad_plugin')
     metric.post_files_scan('bad_plugin')
     self.assertEqual(1, metric.value, "Should have a hit")