A Jenkins pipeline script combining two String values with a logical AND (&& operator) does not behave as expected:

      '' && '' -> false
      'a' && 'b' -> 'b'
      'a' != '' && 'b != '' -> true
      

      So when combining two non empty values the result is not of type boolean but the second value of type String.

      The following script demonstrates this behavior:

      node {
          def doit = { String s1, String s2 ->
              def p = { v -> "'$v' (${v.class})" }
          
              echo "s1 = ${p s1}, s2 = ${p s2}"
              echo "s1 && s2 = ${p s1 && s2}"
              echo "s1 != '' && s2 != '' = ${p s1 != '' && s2 != ''}"
          }
       
          doit '', ''
          doit 'foo', 'bar'
      }
      

      Console of an example run in my environment:

          [JENKINS-40134] Groovy truth issue in Pipeline script

          Marcus Olk created issue -
          Marcus Olk made changes -
          Summary Original: Groovy truth issue in parameterized Pipeline script New: Groovy truth issue in Pipeline script
          Marcus Olk made changes -
          Description Original: A Jenkins pipeline script combining two {{String}} values with a logical AND ({{&&}} operator) does not behave as expected:

          {code}
          '' && '' -> false
          'a' && 'b' -> 'b'
          'a' != '' && 'b != ''' -> true
          {code}

          So when combining two non empty values the result is not of type {{boolean}} but the second value of type {{String}}.

          The following script demonstrates this behavior:

          {code}
          node {
              def doit = { String s1, String s2 ->
                  def p = { v -> "'$v' (${v.class})" }
              
                  echo "s1 = ${p s1}, s2 = ${p s2}"
                  echo "s1 && s2 = ${p s1 && s2}"
                  echo "s1 != '' && s2 != '' = ${p s1 != '' && s2 != ''}"
              }
           
              doit '', ''
              doit 'foo', 'bar'
          }
          {code}

          Console of an example run in my environment:
           !Screen Shot 2016-11-30 at 22.58.37.png!
          New: A Jenkins pipeline script combining two {{String}} values with a logical AND ({{&&}} operator) does not behave as expected:

          {code}
          '' && '' -> false
          'a' && 'b' -> 'b'
          'a' != '' && 'b != '' -> true
          {code}

          So when combining two non empty values the result is not of type {{boolean}} but the second value of type {{String}}.

          The following script demonstrates this behavior:

          {code}
          node {
              def doit = { String s1, String s2 ->
                  def p = { v -> "'$v' (${v.class})" }
              
                  echo "s1 = ${p s1}, s2 = ${p s2}"
                  echo "s1 && s2 = ${p s1 && s2}"
                  echo "s1 != '' && s2 != '' = ${p s1 != '' && s2 != ''}"
              }
           
              doit '', ''
              doit 'foo', 'bar'
          }
          {code}

          Console of an example run in my environment:
           !Screen Shot 2016-11-30 at 22.58.37.png!
          Andrew Bayer made changes -
          Component/s New: workflow-cps-plugin [ 21713 ]
          Component/s Original: pipeline [ 21692 ]

          Reinhold Füreder added a comment - - edited

          Presumably the same problem (groovy cps behaving differently for object references with respect to type coercion and groovy truth) causes this:

          #!/usr/bin/env groovy
          
          stage('stage') {
            echo "f1(): ${f1()}"
            echo "f2(): ${f2()}"
            echo "f3(): ${f3()}"
            echo "f4(): ${f4()}"
          }
          
          def f1() {
              return null
          }
          
          boolean f2() {
              return null
          }
          
          def f3() {
              return false
          }
          
          boolean f4() {
              return false
          }
          

          => actual log output:

          [Pipeline] stage
          [Pipeline] { (stage)
          [Pipeline] echo
          f1(): null
          [Pipeline] echo
          f2(): null
          [Pipeline] echo
          f3(): false
          [Pipeline] echo
          f4(): false
          [Pipeline] }
          [Pipeline] // stage
          [Pipeline] End of Pipeline
          

          or in short:

          f1(): null
          f2(): null
          f3(): false
          f4(): false
          

          Expected:

          f1(): null
          f2(): false // !
          f3(): false
          f4(): false
          

          Note: Using the greatest and latest versions, i.e. Jenkins (Core) v2.130, "Pipeline: Groovy"/workflow-cps plugin v2.54

          Reinhold Füreder added a comment - - edited Presumably the same problem (groovy cps behaving differently for object references with respect to type coercion and groovy truth) causes this: #!/usr/bin/env groovy stage( 'stage' ) { echo "f1(): ${f1()}" echo "f2(): ${f2()}" echo "f3(): ${f3()}" echo "f4(): ${f4()}" } def f1() { return null } boolean f2() { return null } def f3() { return false } boolean f4() { return false } => actual log output: [Pipeline] stage [Pipeline] { (stage) [Pipeline] echo f1(): null [Pipeline] echo f2(): null [Pipeline] echo f3(): false [Pipeline] echo f4(): false [Pipeline] } [Pipeline] // stage [Pipeline] End of Pipeline or in short: f1(): null f2(): null f3(): false f4(): false Expected: f1(): null f2(): false // ! f3(): false f4(): false Note: Using the greatest and latest versions, i.e. Jenkins (Core) v2.130, "Pipeline: Groovy"/workflow-cps plugin v2.54
          Andrew Bayer made changes -
          Labels Original: pipeline New: complex-cps-code pipeline triaged-2018-11

            Unassigned Unassigned
            m_olk Marcus Olk
            Votes:
            2 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: