Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-62800

plot plugin broken on Jenkins >2.263

    XMLWordPrintable

Details

    Description

      The following ATH errors for the Plot plugin may be caused the tables-to-divs changes:

      • plugins.plot.PlotPluginTest.generate_simple_plot
      • plugins.plot.PlotPluginTest.no_exception_visit_plot_page
      • plugins.plot.PlotPluginTest.postbuild_rendering_should_work
      • plugins.plot.PlotPluginXmlTest.generateSimpleXmlTest

      Attachments

        Issue Links

          Activity

            timja Tim Jacomb added a comment -

            Plots plugin is broken with the tables to divs changes.

            timja Tim Jacomb added a comment - Plots plugin is broken with the tables to divs changes.

            The tests were removed on https://github.com/jenkinsci/acceptance-test-harness/pull/634 . The plugin still has issues though.

            fqueiruga Félix Queiruga Balado added a comment - The tests were removed on https://github.com/jenkinsci/acceptance-test-harness/pull/634  . The plugin still has issues though.
            geoffroyjabouley Geoffroy Jabouley added a comment - - edited

            Hello
            is this ticket properly fixed by https://github.com/jenkinsci/plot-plugin/pull/65 merged PR?
            Should be available in latest plugin version 2.1.9

            geoffroyjabouley Geoffroy Jabouley added a comment - - edited Hello is this ticket properly fixed by https://github.com/jenkinsci/plot-plugin/pull/65 merged PR? Should be available in latest plugin version 2.1.9
            markewaite Mark Waite added a comment -

            Resolved in the release of the plot plugin that I tested.

            Test script

            #!/bin/bash
            
            # User reports cannot save system configuration if rundeck plugin is installed
            
            JENKINS_WAR_VERSION=2.361.1
            JENKINS_WAR=jenkins-${JENKINS_WAR_VERSION}.war
            PLUGIN_MANAGER_VERSION=2.12.9
            PLUGIN_MANAGER_JAR=jenkins-plugin-manager-${PLUGIN_MANAGER_VERSION}.jar
            
            if [ ! -f ../$PLUGIN_MANAGER_JAR ]; then
              wget https://github.com/jenkinsci/plugin-installation-manager-tool/releases/download/${PLUGIN_MANAGER_VERSION}/$PLUGIN_MANAGER_JAR
              mv $PLUGIN_MANAGER_JAR ..
            fi
            if [ ! -d plugins ]; then
              mkdir plugins
            fi
            java -jar ../$PLUGIN_MANAGER_JAR --jenkins-version $JENKINS_WAR_VERSION --latest false --plugin-download-directory plugins --plugin-file plugins.txt
            
            if [ ! -f ../$JENKINS_WAR ]; then
              wget https://get.jenkins.io/war-stable/${JENKINS_WAR_VERSION}/jenkins.war
              mv jenkins.war ../$JENKINS_WAR
            fi
            
            JENKINS_HOME=. java -jar ../$JENKINS_WAR
            

            Plugins.txt file

            bootstrap4-api:4.6.0-5
            bootstrap5-api:5.2.1-2
            bouncycastle-api:2.26
            caffeine-api:2.9.3-65.v6a_47d0f4d1fe
            checks-api:1.7.5
            command-launcher:90.v669d7ccb_7c31
            display-url-api:2.3.6
            echarts-api:5.3.3-1
            font-awesome-api:6.2.0-3
            instance-identity:116.vf8f487400980
            jackson2-api:2.13.3-285.vc03c0256d517
            javax-activation-api:1.2.0-4
            javax-mail-api:1.6.2-7
            jaxb:2.3.6-1
            jdk-tool:55.v1b_32b_6ca_f9ca
            jquery3-api:3.6.1-1
            junit:1119.1121.vc43d0fc45561
            matrix-project:785.v06b_7f47b_c631
            mina-sshd-api-common:2.9.1-44.v476733c11f82
            mina-sshd-api-core:2.9.1-44.v476733c11f82
            plot:2.1.11
            plugin-util-api:2.17.0
            popper-api:1.16.1-3
            popper2-api:2.11.6-1
            scm-api:621.vda_a_b_055e58f7
            script-security:1183.v774b_0b_0a_a_451
            snakeyaml-api:1.32-86.ve3f030a_75631
            sshd:3.249.v2dc2ea_416e33
            structs:324.va_f5d6774f3a_d
            trilead-api:2.72.v2a_3236754f73
            workflow-api:1192.v2d0deb_19d212
            workflow-step-api:639.v6eca_cd8c04a_a_
            workflow-support:838.va_3a_087b_4055b
            
            markewaite Mark Waite added a comment - Resolved in the release of the plot plugin that I tested. Test script #!/bin/bash # User reports cannot save system configuration if rundeck plugin is installed JENKINS_WAR_VERSION=2.361.1 JENKINS_WAR=jenkins-${JENKINS_WAR_VERSION}.war PLUGIN_MANAGER_VERSION=2.12.9 PLUGIN_MANAGER_JAR=jenkins-plugin-manager-${PLUGIN_MANAGER_VERSION}.jar if [ ! -f ../$PLUGIN_MANAGER_JAR ]; then wget https://github.com/jenkinsci/plugin-installation-manager-tool/releases/download/${PLUGIN_MANAGER_VERSION}/$PLUGIN_MANAGER_JAR mv $PLUGIN_MANAGER_JAR .. fi if [ ! -d plugins ]; then mkdir plugins fi java -jar ../$PLUGIN_MANAGER_JAR --jenkins-version $JENKINS_WAR_VERSION --latest false --plugin-download-directory plugins --plugin-file plugins.txt if [ ! -f ../$JENKINS_WAR ]; then wget https://get.jenkins.io/war-stable/${JENKINS_WAR_VERSION}/jenkins.war mv jenkins.war ../$JENKINS_WAR fi JENKINS_HOME=. java -jar ../$JENKINS_WAR Plugins.txt file bootstrap4-api:4.6.0-5 bootstrap5-api:5.2.1-2 bouncycastle-api:2.26 caffeine-api:2.9.3-65.v6a_47d0f4d1fe checks-api:1.7.5 command-launcher:90.v669d7ccb_7c31 display-url-api:2.3.6 echarts-api:5.3.3-1 font-awesome-api:6.2.0-3 instance-identity:116.vf8f487400980 jackson2-api:2.13.3-285.vc03c0256d517 javax-activation-api:1.2.0-4 javax-mail-api:1.6.2-7 jaxb:2.3.6-1 jdk-tool:55.v1b_32b_6ca_f9ca jquery3-api:3.6.1-1 junit:1119.1121.vc43d0fc45561 matrix-project:785.v06b_7f47b_c631 mina-sshd-api-common:2.9.1-44.v476733c11f82 mina-sshd-api-core:2.9.1-44.v476733c11f82 plot:2.1.11 plugin-util-api:2.17.0 popper-api:1.16.1-3 popper2-api:2.11.6-1 scm-api:621.vda_a_b_055e58f7 script-security:1183.v774b_0b_0a_a_451 snakeyaml-api:1.32-86.ve3f030a_75631 sshd:3.249.v2dc2ea_416e33 structs:324.va_f5d6774f3a_d trilead-api:2.72.v2a_3236754f73 workflow-api:1192.v2d0deb_19d212 workflow-step-api:639.v6eca_cd8c04a_a_ workflow-support:838.va_3a_087b_4055b

            People

              vgaidarji Veaceslav Gaidarji
              fqueiruga Félix Queiruga Balado
              Votes:
              3 Vote for this issue
              Watchers:
              7 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: