-
-
Notifications
You must be signed in to change notification settings - Fork 586
Allow to not skip empty not inline array root node #611
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
8e0c392
Do not skip empty not inline array root node
goetas d32d5c6
Added skip_when_empty xml collection option
goetas 49018c2
Allow to decide when skip empty arrays when serializing to xml
goetas 2d664fa
Use always xpath to find nodes, when the namespace is empty, simplexm…
goetas 3860411
Lookup for local namespaces when creating elements
goetas ab14abf
Use camel case for skipWhenEmpty annotation
goetas 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
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
41 changes: 41 additions & 0 deletions
41
tests/JMS/Serializer/Tests/Fixtures/ObjectWithAbsentXmlListNode.php
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,41 @@ | ||
<?php | ||
|
||
/* | ||
* Copyright 2013 Johannes M. Schmitt <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace JMS\Serializer\Tests\Fixtures; | ||
|
||
use JMS\Serializer\Annotation as Serializer; | ||
|
||
class ObjectWithAbsentXmlListNode | ||
{ | ||
/** | ||
* @Serializer\XmlList(inline=false, entry="comment", skip_when_empty=true) | ||
* @Serializer\Type("array<string>") | ||
*/ | ||
public $absent; | ||
/** | ||
* @Serializer\XmlList(inline=false, entry="comment", skip_when_empty=false) | ||
* @Serializer\Type("array<string>") | ||
*/ | ||
public $present; | ||
|
||
/** | ||
* @Serializer\XmlList(inline=false, entry="comment") | ||
* @Serializer\Type("array<string>") | ||
*/ | ||
public $skipDefault; | ||
} |
80 changes: 80 additions & 0 deletions
80
tests/JMS/Serializer/Tests/Fixtures/ObjectWithEmptyNullableAndEmptyArrays.php
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,80 @@ | ||
<?php | ||
|
||
/* | ||
* Copyright 2013 Johannes M. Schmitt <[email protected]> | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
namespace JMS\Serializer\Tests\Fixtures; | ||
|
||
use JMS\Serializer\Annotation as Serializer; | ||
|
||
class ObjectWithEmptyNullableAndEmptyArrays | ||
{ | ||
/** | ||
* @Serializer\XmlList(inline = true, entry = "comment") | ||
* @Serializer\Type("array") | ||
*/ | ||
public $null_inline = null; | ||
|
||
/** | ||
* @Serializer\XmlList(inline = true, entry = "comment") | ||
* @Serializer\Type("array") | ||
*/ | ||
public $empty_inline = []; | ||
|
||
|
||
/** | ||
* @Serializer\XmlList(inline = true, entry = "comment") | ||
* @Serializer\Type("array") | ||
*/ | ||
public $not_empty_inline = ['not_empty_inline']; | ||
|
||
/** | ||
* @Serializer\XmlList(inline = false, entry = "comment") | ||
* @Serializer\Type("array") | ||
*/ | ||
public $null_not_inline = null; | ||
|
||
/** | ||
* @Serializer\XmlList(inline = false, entry = "comment") | ||
* @Serializer\Type("array") | ||
*/ | ||
public $empty_not_inline = []; | ||
|
||
/** | ||
* @Serializer\XmlList(inline = false, entry = "comment", skip_when_empty=false) | ||
* @Serializer\Type("array") | ||
*/ | ||
public $not_empty_not_inline = ['not_empty_not_inline']; | ||
|
||
/** | ||
* @Serializer\XmlList(inline = false, entry = "comment", skip_when_empty=false) | ||
* @Serializer\Type("array") | ||
*/ | ||
public $null_not_inline_skip = null; | ||
|
||
/** | ||
* @Serializer\XmlList(inline = false, entry = "comment", skip_when_empty=false) | ||
* @Serializer\Type("array") | ||
*/ | ||
public $empty_not_inline_skip = []; | ||
|
||
|
||
/** | ||
* @Serializer\XmlList(inline = false, entry = "comment", skip_when_empty=false) | ||
* @Serializer\Type("array") | ||
*/ | ||
public $not_empty_not_inline_skip = ['not_empty_not_inline_skip']; | ||
} |
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
23 changes: 23 additions & 0 deletions
23
tests/JMS/Serializer/Tests/Metadata/Driver/php/ObjectWithAbsentXmlListNode.php
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,23 @@ | ||
<?php | ||
|
||
use JMS\Serializer\Metadata\ClassMetadata; | ||
use JMS\Serializer\Metadata\PropertyMetadata; | ||
use JMS\Serializer\Metadata\VirtualPropertyMetadata; | ||
|
||
$className = 'JMS\Serializer\Tests\Fixtures\ObjectWithAbsentXmlListNode'; | ||
|
||
$metadata = new ClassMetadata( $className ); | ||
|
||
$pMetadata = new PropertyMetadata($className, 'absent'); | ||
$pMetadata->xmlCollectionSkipWhenEmpty = true; | ||
$metadata->addPropertyMetadata($pMetadata); | ||
|
||
$pMetadata = new PropertyMetadata($className, 'present'); | ||
$pMetadata->xmlCollectionSkipWhenEmpty = false; | ||
$metadata->addPropertyMetadata($pMetadata); | ||
|
||
$pMetadata = new PropertyMetadata($className, 'skipDefault'); | ||
$metadata->addPropertyMetadata($pMetadata); | ||
|
||
|
||
return $metadata; |
16 changes: 16 additions & 0 deletions
16
tests/JMS/Serializer/Tests/Metadata/Driver/xml/ObjectWithAbsentXmlListNode.xml
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,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<serializer> | ||
<class name="JMS\Serializer\Tests\Fixtures\ObjectWithAbsentXmlListNode"> | ||
<property name="absent"> | ||
<type>array</type> | ||
<xml-list skip-when-empty="true"/> | ||
</property> | ||
<property name="present"> | ||
<type>array</type> | ||
<xml-list skip-when-empty="false"/> | ||
</property> | ||
<property name="skipDefault"> | ||
<type>array</type> | ||
</property> | ||
</class> | ||
</serializer> |
14 changes: 14 additions & 0 deletions
14
tests/JMS/Serializer/Tests/Metadata/Driver/yml/ObjectWithAbsentXmlListNode.yml
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,14 @@ | ||
JMS\Serializer\Tests\Fixtures\ObjectWithAbsentXmlListNode: | ||
properties: | ||
absent: | ||
type: array | ||
xml_list: | ||
skip_when_empty: true | ||
present: | ||
type: array | ||
xml_list: | ||
skip_when_empty: false | ||
skipDefault: | ||
type: array | ||
xml_list: | ||
inline: false |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we use this casing for other annotations? I think we already use camelCasing, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
true, will fix it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done