- 
                Notifications
    You must be signed in to change notification settings 
- Fork 8k
Fix issues related to libxml2 2.12.0 #12802
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Merged
      
      
    
  
     Merged
                    Changes from 5 commits
      Commits
    
    
            Show all changes
          
          
            6 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      55f339d
              
                Avoid passing NULL to xmlSwitchToEncoding
              
              
                ndossche c268d4f
              
                Split tests for different error reporting behaviour in libxml2 2.12.0
              
              
                ndossche 1998def
              
                Avoid deprecation warnings for libxml2 2.12.0
              
              
                ndossche cc2c56f
              
                Temporarily disable part of test for libxml 2.12.0 regression
              
              
                ndossche 1639607
              
                Review fixes
              
              
                ndossche c1c5805
              
                [ci skip] Update test description
              
              
                ndossche File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| --TEST-- | ||
| Test DOMDocument::loadXML() detects not-well formed XML | ||
| --SKIPIF-- | ||
| <?php | ||
| if (LIBXML_VERSION < 21200) die('skip libxml2 test variant for version >= 2.12'); | ||
| ?> | ||
| --DESCRIPTION-- | ||
| This test verifies the method detects an opening and ending tag mismatch | ||
| Environment variables used in the test: | ||
| - XML_FILE: the xml file to load | ||
| - LOAD_OPTIONS: the second parameter to pass to the method | ||
| - EXPECTED_RESULT: the expected result | ||
| --CREDITS-- | ||
| Antonio Diaz Ruiz <dejalatele@gmail.com> | ||
| --EXTENSIONS-- | ||
| dom | ||
| --ENV-- | ||
| XML_FILE=/not_well_formed.xml | ||
| LOAD_OPTIONS=0 | ||
| EXPECTED_RESULT=0 | ||
| --FILE_EXTERNAL-- | ||
| domdocumentloadxml_test_method.inc | ||
| --EXPECTF-- | ||
| Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book %s | ||
|  | ||
| Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book line (4|5) and books%r %s | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| --TEST-- | ||
| Test DOMDocument::loadXML() detects not-well formed XML | ||
| --SKIPIF-- | ||
| <?php | ||
| if (LIBXML_VERSION < 21200) die('skip libxml2 test variant for version >= 2.12'); | ||
| ?> | ||
| --DESCRIPTION-- | ||
| This test verifies the method detects attributes values not closed between " or ' | ||
| Environment variables used in the test: | ||
| - XML_FILE: the xml file to load | ||
| - LOAD_OPTIONS: the second parameter to pass to the method | ||
| - EXPECTED_RESULT: the expected result | ||
| --CREDITS-- | ||
| Antonio Diaz Ruiz <dejalatele@gmail.com> | ||
| --EXTENSIONS-- | ||
| dom | ||
| --ENV-- | ||
| XML_FILE=/not_well_formed2.xml | ||
| LOAD_OPTIONS=0 | ||
| EXPECTED_RESULT=0 | ||
| --FILE_EXTERNAL-- | ||
| domdocumentloadxml_test_method.inc | ||
| --EXPECTF-- | ||
| Warning: DOMDocument::loadXML(): AttValue: " or ' expected in Entity, line: 4 in %s on line %d | ||
|  | ||
| Warning: DOMDocument::loadXML(): internal error: xmlParseStartTag: problem parsing attributes in Entity, line: 4 in %s on line %d | ||
|  | ||
| Warning: DOMDocument::loadXML(): Couldn't find end of Start Tag book line 4 in Entity, line: 4 in %s on line %d | ||
|  | ||
| Warning: DOMDocument::loadXML(): Opening and ending tag mismatch: books line 3 and book in Entity, line: 7 in %s on line %d | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| --TEST-- | ||
| Test DOMDocument::load() detects not-well formed XML | ||
| --SKIPIF-- | ||
| <?php | ||
| if (LIBXML_VERSION < 21200) die('skip libxml2 test variant for version >= 2.12'); | ||
| ?> | ||
| --DESCRIPTION-- | ||
| This test verifies the method detects an opening and ending tag mismatch | ||
| Environment variables used in the test: | ||
| - XML_FILE: the xml file to load | ||
| - LOAD_OPTIONS: the second parameter to pass to the method | ||
| - EXPECTED_RESULT: the expected result | ||
| --CREDITS-- | ||
| Antonio Diaz Ruiz <dejalatele@gmail.com> | ||
| --EXTENSIONS-- | ||
| dom | ||
| --ENV-- | ||
| XML_FILE=/not_well_formed.xml | ||
| LOAD_OPTIONS=0 | ||
| EXPECTED_RESULT=0 | ||
| --FILE_EXTERNAL-- | ||
| domdocumentload_test_method.inc | ||
| --EXPECTF-- | ||
| Warning: DOMDocument::load%r(XML){0,1}%r(): Opening and ending tag mismatch: title line 5 and book %s | ||
|  | ||
| Warning: DOMDocument::load%r(XML){0,1}%r(): %rexpected '>'|Opening and ending tag mismatch: book line (4|5) and books%r %s | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| --TEST-- | ||
| Test DOMDocument::load() detects not-well formed | ||
| --SKIPIF-- | ||
| <?php | ||
| if (LIBXML_VERSION < 21200) die('skip libxml2 test variant for version >= 2.12'); | ||
| ?> | ||
| --DESCRIPTION-- | ||
| This test verifies the method detects attributes values not closed between " or ' | ||
| Environment variables used in the test: | ||
| - XML_FILE: the xml file to load | ||
| - LOAD_OPTIONS: the second parameter to pass to the method | ||
| - EXPECTED_RESULT: the expected result | ||
| --CREDITS-- | ||
| Antonio Diaz Ruiz <dejalatele@gmail.com> | ||
| --EXTENSIONS-- | ||
| dom | ||
| --ENV-- | ||
| XML_FILE=/not_well_formed2.xml | ||
| LOAD_OPTIONS=0 | ||
| EXPECTED_RESULT=0 | ||
| --FILE_EXTERNAL-- | ||
| domdocumentload_test_method.inc | ||
| --EXPECTF-- | ||
| Warning: DOMDocument::load(): AttValue: " or ' expected in %s on line %d | ||
|  | ||
| Warning: DOMDocument::load(): internal error: xmlParseStartTag: problem parsing attributes in %s on line %d | ||
|  | ||
| Warning: DOMDocument::load(): Couldn't find end of Start Tag book line 4 in %s on line %d | ||
|  | ||
| Warning: DOMDocument::load(): Opening and ending tag mismatch: books line 3 and book in %s on line %d | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.