Make WordPress Core

Changeset 43441 for trunk


Ignore:
Timestamp:
07/13/2018 04:45:35 AM (6 years ago)
Author:
pento
Message:

REST API: Update the test fixture generator following [43439]

As [43439] added data that contains object IDs, it can cause wp-api-generated.js to be unnecessarily regenerated.

Regenerating our list of fixtures that need normalising rectifies this.

See #44321.

Location:
trunk/tests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/rest-api/rest-schema-setup.php

    r42741 r43441  
    442442        'oembeds.author_url'                               => 'http://example.org',
    443443        'oembeds.html'                                     => '<blockquote class="wp-embedded-content">...</blockquote>...',
    444         'PostsCollection.0.id'                             => 3,
    445         'PostsCollection.0.guid.rendered'                  => 'http://example.org/?p=3',
    446         'PostsCollection.0.link'                           => 'http://example.org/?p=3',
    447         'PostsCollection.0._links.self.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/posts/3',
     444        'PostsCollection.0.id'                             => 4,
     445        'PostsCollection.0.guid.rendered'                  => 'http://example.org/?p=4',
     446        'PostsCollection.0.link'                           => 'http://example.org/?p=4',
     447        'PostsCollection.0._links.self.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/posts/4',
    448448        'PostsCollection.0._links.collection.0.href'       => 'http://example.org/index.php?rest_route=/wp/v2/posts',
    449449        'PostsCollection.0._links.about.0.href'            => 'http://example.org/index.php?rest_route=/wp/v2/types/post',
    450         'PostsCollection.0._links.replies.0.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3',
    451         'PostsCollection.0._links.version-history.0.href'  => 'http://example.org/index.php?rest_route=/wp/v2/posts/3/revisions',
    452         'PostsCollection.0._links.wp:attachment.0.href'    => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3',
    453         'PostsCollection.0._links.wp:term.0.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3',
    454         'PostsCollection.0._links.wp:term.1.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3',
    455         'PostModel.id'                                     => 3,
    456         'PostModel.guid.rendered'                          => 'http://example.org/?p=3',
    457         'PostModel.link'                                   => 'http://example.org/?p=3',
     450        'PostsCollection.0._links.replies.0.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4',
     451        'PostsCollection.0._links.version-history.0.href'  => 'http://example.org/index.php?rest_route=/wp/v2/posts/4/revisions',
     452        'PostsCollection.0._links.predecessor-version.0.id' => 5,
     453        'PostsCollection.0._links.predecessor-version.0.href' => 'http://example.org/index.php?rest_route=/wp/v2/posts/4/revisions/5',
     454        'PostsCollection.0._links.wp:attachment.0.href'    => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4',
     455        'PostsCollection.0._links.wp:term.0.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4',
     456        'PostsCollection.0._links.wp:term.1.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4',
     457        'PostModel.id'                                     => 4,
     458        'PostModel.guid.rendered'                          => 'http://example.org/?p=4',
     459        'PostModel.link'                                   => 'http://example.org/?p=4',
    458460        'postRevisions.0.author'                           => 2,
    459         'postRevisions.0.id'                               => 4,
    460         'postRevisions.0.parent'                           => 3,
    461         'postRevisions.0.slug'                             => '3-revision-v1',
    462         'postRevisions.0.guid.rendered'                    => 'http://example.org/?p=4',
    463         'postRevisions.0._links.parent.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/posts/3',
     461        'postRevisions.0.id'                               => 5,
     462        'postRevisions.0.parent'                           => 4,
     463        'postRevisions.0.slug'                             => '4-revision-v1',
     464        'postRevisions.0.guid.rendered'                    => 'http://example.org/?p=5',
     465        'postRevisions.0._links.parent.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/posts/4',
    464466        'revision.author'                                  => 2,
    465         'revision.id'                                      => 4,
    466         'revision.parent'                                  => 3,
    467         'revision.slug'                                    => '3-revision-v1',
    468         'revision.guid.rendered'                           => 'http://example.org/?p=4',
    469         'PagesCollection.0.id'                             => 5,
    470         'PagesCollection.0.guid.rendered'                  => 'http://example.org/?page_id=5',
    471         'PagesCollection.0.link'                           => 'http://example.org/?page_id=5',
    472         'PagesCollection.0._links.self.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/pages/5',
     467        'revision.id'                                      => 5,
     468        'revision.parent'                                  => 4,
     469        'revision.slug'                                    => '4-revision-v1',
     470        'revision.guid.rendered'                           => 'http://example.org/?p=5',
     471        'PagesCollection.0.id'                             => 6,
     472        'PagesCollection.0.guid.rendered'                  => 'http://example.org/?page_id=6',
     473        'PagesCollection.0.link'                           => 'http://example.org/?page_id=6',
     474        'PagesCollection.0._links.self.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/pages/6',
    473475        'PagesCollection.0._links.collection.0.href'       => 'http://example.org/index.php?rest_route=/wp/v2/pages',
    474476        'PagesCollection.0._links.about.0.href'            => 'http://example.org/index.php?rest_route=/wp/v2/types/page',
    475         'PagesCollection.0._links.replies.0.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5',
    476         'PagesCollection.0._links.version-history.0.href'  => 'http://example.org/index.php?rest_route=/wp/v2/pages/5/revisions',
    477         'PagesCollection.0._links.wp:attachment.0.href'    => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5',
    478         'PageModel.id'                                     => 5,
    479         'PageModel.guid.rendered'                          => 'http://example.org/?page_id=5',
    480         'PageModel.link'                                   => 'http://example.org/?page_id=5',
     477        'PagesCollection.0._links.replies.0.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6',
     478        'PagesCollection.0._links.version-history.0.href'  => 'http://example.org/index.php?rest_route=/wp/v2/pages/6/revisions',
     479        'PagesCollection.0._links.predecessor-version.0.id' => 7,
     480        'PagesCollection.0._links.predecessor-version.0.href' => 'http://example.org/index.php?rest_route=/wp/v2/pages/6/revisions/7',
     481        'PagesCollection.0._links.wp:attachment.0.href'    => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6',
     482        'PageModel.id'                                     => 6,
     483        'PageModel.guid.rendered'                          => 'http://example.org/?page_id=6',
     484        'PageModel.link'                                   => 'http://example.org/?page_id=6',
    481485        'pageRevisions.0.author'                           => 2,
    482         'pageRevisions.0.id'                               => 6,
    483         'pageRevisions.0.parent'                           => 5,
    484         'pageRevisions.0.slug'                             => '5-revision-v1',
    485         'pageRevisions.0.guid.rendered'                    => 'http://example.org/?p=6',
    486         'pageRevisions.0._links.parent.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/pages/5',
     486        'pageRevisions.0.id'                               => 7,
     487        'pageRevisions.0.parent'                           => 6,
     488        'pageRevisions.0.slug'                             => '6-revision-v1',
     489        'pageRevisions.0.guid.rendered'                    => 'http://example.org/?p=7',
     490        'pageRevisions.0._links.parent.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/pages/6',
    487491        'pageRevision.author'                              => 2,
    488         'pageRevision.id'                                  => 6,
    489         'pageRevision.parent'                              => 5,
    490         'pageRevision.slug'                                => '5-revision-v1',
    491         'pageRevision.guid.rendered'                       => 'http://example.org/?p=6',
    492         'MediaCollection.0.id'                             => 7,
    493         'MediaCollection.0.guid.rendered'                  => 'http://example.org/?attachment_id=7',
    494         'MediaCollection.0.link'                           => 'http://example.org/?attachment_id=7',
     492        'pageRevision.id'                                  => 7,
     493        'pageRevision.parent'                              => 6,
     494        'pageRevision.slug'                                => '6-revision-v1',
     495        'pageRevision.guid.rendered'                       => 'http://example.org/?p=7',
     496        'MediaCollection.0.id'                             => 8,
     497        'MediaCollection.0.guid.rendered'                  => 'http://example.org/?attachment_id=8',
     498        'MediaCollection.0.link'                           => 'http://example.org/?attachment_id=8',
    495499        'MediaCollection.0.description.rendered'           => '<p class="attachment"><!-- <a...><img.../></a> --></p>',
    496500        'MediaCollection.0.source_url'                     => 'http://example.org/wp-content/uploads//tmp/canola.jpg',
    497         'MediaCollection.0._links.self.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/media/7',
     501        'MediaCollection.0._links.self.0.href'             => 'http://example.org/index.php?rest_route=/wp/v2/media/8',
    498502        'MediaCollection.0._links.collection.0.href'       => 'http://example.org/index.php?rest_route=/wp/v2/media',
    499503        'MediaCollection.0._links.about.0.href'            => 'http://example.org/index.php?rest_route=/wp/v2/types/attachment',
    500         'MediaCollection.0._links.replies.0.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7',
    501         'MediaModel.id'                                    => 7,
    502         'MediaModel.guid.rendered'                         => 'http://example.org/?attachment_id=7',
    503         'MediaModel.link'                                  => 'http://example.org/?attachment_id=7',
     504        'MediaCollection.0._links.replies.0.href'          => 'http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=8',
     505        'MediaModel.id'                                    => 8,
     506        'MediaModel.guid.rendered'                         => 'http://example.org/?attachment_id=8',
     507        'MediaModel.link'                                  => 'http://example.org/?attachment_id=8',
    504508        'MediaModel.description.rendered'                  => '<p class="attachment"><!-- <a...><img.../></a> --></p>',
    505509        'MediaModel.source_url'                            => 'http://example.org/wp-content/uploads//tmp/canola.jpg',
     
    549553        'me.link'                                          => 'http://example.org/?author=2',
    550554        'CommentsCollection.0.id'                          => 2,
    551         'CommentsCollection.0.post'                        => 3,
    552         'CommentsCollection.0.link'                        => 'http://example.org/?p=3#comment-2',
     555        'CommentsCollection.0.post'                        => 4,
     556        'CommentsCollection.0.link'                        => 'http://example.org/?p=4#comment-2',
    553557        'CommentsCollection.0._links.self.0.href'          => 'http://example.org/index.php?rest_route=/wp/v2/comments/2',
    554558        'CommentsCollection.0._links.collection.0.href'    => 'http://example.org/index.php?rest_route=/wp/v2/comments',
    555         'CommentsCollection.0._links.up.0.href'            => 'http://example.org/index.php?rest_route=/wp/v2/posts/3',
     559        'CommentsCollection.0._links.up.0.href'            => 'http://example.org/index.php?rest_route=/wp/v2/posts/4',
    556560        'CommentModel.id'                                  => 2,
    557         'CommentModel.post'                                => 3,
    558         'CommentModel.link'                                => 'http://example.org/?p=3#comment-2',
     561        'CommentModel.post'                                => 4,
     562        'CommentModel.link'                                => 'http://example.org/?p=4#comment-2',
    559563        'settings.title'                                   => 'Test Blog',
    560564        'settings.url'                                     => 'http://example.org',
  • trunk/tests/qunit/fixtures/wp-api-generated.js

    r43439 r43441  
    35433543mockedApiResponse.PostsCollection = [
    35443544    {
    3545         "id": 3,
     3545        "id": 4,
    35463546        "date": "2017-02-14T00:00:00",
    35473547        "date_gmt": "2017-02-14T00:00:00",
    35483548        "guid": {
    3549             "rendered": "http://example.org/?p=3"
     3549            "rendered": "http://example.org/?p=4"
    35503550        },
    35513551        "modified": "2017-02-14T00:00:00",
     
    35543554        "status": "publish",
    35553555        "type": "post",
    3556         "link": "http://example.org/?p=3",
     3556        "link": "http://example.org/?p=4",
    35573557        "title": {
    35583558            "rendered": "REST API Client Fixture: Post"
     
    35833583            "self": [
    35843584                {
    3585                     "href": "http://example.org/index.php?rest_route=/wp/v2/posts/3"
     3585                    "href": "http://example.org/index.php?rest_route=/wp/v2/posts/4"
    35863586                }
    35873587            ],
     
    35993599                {
    36003600                    "embeddable": true,
    3601                     "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3"
     3601                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4"
    36023602                }
    36033603            ],
     
    36053605                {
    36063606                    "count": 1,
    3607                     "href": "http://example.org/index.php?rest_route=/wp/v2/posts/3/revisions"
     3607                    "href": "http://example.org/index.php?rest_route=/wp/v2/posts/4/revisions"
    36083608                }
    36093609            ],
    36103610            "predecessor-version": [
    36113611                {
    3612                     "id": 3123,
    3613                     "href": "http://example.org/index.php?rest_route=/wp/v2/posts/3122/revisions/3123"
     3612                    "id": 5,
     3613                    "href": "http://example.org/index.php?rest_route=/wp/v2/posts/4/revisions/5"
    36143614                }
    36153615            ],
    36163616            "wp:attachment": [
    36173617                {
    3618                     "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3"
     3618                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4"
    36193619                }
    36203620            ],
     
    36233623                    "taxonomy": "category",
    36243624                    "embeddable": true,
    3625                     "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3"
     3625                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=4"
    36263626                },
    36273627                {
    36283628                    "taxonomy": "post_tag",
    36293629                    "embeddable": true,
    3630                     "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3"
     3630                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=4"
    36313631                }
    36323632            ],
     
    36433643
    36443644mockedApiResponse.PostModel = {
    3645     "id": 3,
     3645    "id": 4,
    36463646    "date": "2017-02-14T00:00:00",
    36473647    "date_gmt": "2017-02-14T00:00:00",
    36483648    "guid": {
    3649         "rendered": "http://example.org/?p=3"
     3649        "rendered": "http://example.org/?p=4"
    36503650    },
    36513651    "modified": "2017-02-14T00:00:00",
     
    36543654    "status": "publish",
    36553655    "type": "post",
    3656     "link": "http://example.org/?p=3",
     3656    "link": "http://example.org/?p=4",
    36573657    "title": {
    36583658        "rendered": "REST API Client Fixture: Post"
     
    36873687        "date": "2017-02-14T00:00:00",
    36883688        "date_gmt": "2017-02-14T00:00:00",
    3689         "id": 4,
     3689        "id": 5,
    36903690        "modified": "2017-02-14T00:00:00",
    36913691        "modified_gmt": "2017-02-14T00:00:00",
    3692         "parent": 3,
    3693         "slug": "3-revision-v1",
     3692        "parent": 4,
     3693        "slug": "4-revision-v1",
    36943694        "guid": {
    3695             "rendered": "http://example.org/?p=4"
     3695            "rendered": "http://example.org/?p=5"
    36963696        },
    36973697        "title": {
     
    37073707            "parent": [
    37083708                {
    3709                     "href": "http://example.org/index.php?rest_route=/wp/v2/posts/3"
     3709                    "href": "http://example.org/index.php?rest_route=/wp/v2/posts/4"
    37103710                }
    37113711            ]
     
    37183718    "date": "2017-02-14T00:00:00",
    37193719    "date_gmt": "2017-02-14T00:00:00",
    3720     "id": 4,
     3720    "id": 5,
    37213721    "modified": "2017-02-14T00:00:00",
    37223722    "modified_gmt": "2017-02-14T00:00:00",
    3723     "parent": 3,
    3724     "slug": "3-revision-v1",
     3723    "parent": 4,
     3724    "slug": "4-revision-v1",
    37253725    "guid": {
    3726         "rendered": "http://example.org/?p=4"
     3726        "rendered": "http://example.org/?p=5"
    37273727    },
    37283728    "title": {
     
    37393739mockedApiResponse.PagesCollection = [
    37403740    {
    3741         "id": 5,
     3741        "id": 6,
    37423742        "date": "2017-02-14T00:00:00",
    37433743        "date_gmt": "2017-02-14T00:00:00",
    37443744        "guid": {
    3745             "rendered": "http://example.org/?page_id=5"
     3745            "rendered": "http://example.org/?page_id=6"
    37463746        },
    37473747        "modified": "2017-02-14T00:00:00",
     
    37503750        "status": "publish",
    37513751        "type": "page",
    3752         "link": "http://example.org/?page_id=5",
     3752        "link": "http://example.org/?page_id=6",
    37533753        "title": {
    37543754            "rendered": "REST API Client Fixture: Page"
     
    37753775            "self": [
    37763776                {
    3777                     "href": "http://example.org/index.php?rest_route=/wp/v2/pages/5"
     3777                    "href": "http://example.org/index.php?rest_route=/wp/v2/pages/6"
    37783778                }
    37793779            ],
     
    37913791                {
    37923792                    "embeddable": true,
    3793                     "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5"
     3793                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6"
    37943794                }
    37953795            ],
     
    37973797                {
    37983798                    "count": 1,
    3799                     "href": "http://example.org/index.php?rest_route=/wp/v2/pages/5/revisions"
     3799                    "href": "http://example.org/index.php?rest_route=/wp/v2/pages/6/revisions"
    38003800                }
    38013801            ],
    38023802            "predecessor-version": [
    38033803                {
    3804                     "id": 3125,
    3805                     "href": "http://example.org/index.php?rest_route=/wp/v2/pages/3124/revisions/3125"
     3804                    "id": 7,
     3805                    "href": "http://example.org/index.php?rest_route=/wp/v2/pages/6/revisions/7"
    38063806                }
    38073807            ],
    38083808            "wp:attachment": [
    38093809                {
    3810                     "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5"
     3810                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6"
    38113811                }
    38123812            ],
     
    38233823
    38243824mockedApiResponse.PageModel = {
    3825     "id": 5,
     3825    "id": 6,
    38263826    "date": "2017-02-14T00:00:00",
    38273827    "date_gmt": "2017-02-14T00:00:00",
    38283828    "guid": {
    3829         "rendered": "http://example.org/?page_id=5"
     3829        "rendered": "http://example.org/?page_id=6"
    38303830    },
    38313831    "modified": "2017-02-14T00:00:00",
     
    38343834    "status": "publish",
    38353835    "type": "page",
    3836     "link": "http://example.org/?page_id=5",
     3836    "link": "http://example.org/?page_id=6",
    38373837    "title": {
    38383838        "rendered": "REST API Client Fixture: Page"
     
    38633863        "date": "2017-02-14T00:00:00",
    38643864        "date_gmt": "2017-02-14T00:00:00",
    3865         "id": 6,
     3865        "id": 7,
    38663866        "modified": "2017-02-14T00:00:00",
    38673867        "modified_gmt": "2017-02-14T00:00:00",
    3868         "parent": 5,
    3869         "slug": "5-revision-v1",
     3868        "parent": 6,
     3869        "slug": "6-revision-v1",
    38703870        "guid": {
    3871             "rendered": "http://example.org/?p=6"
     3871            "rendered": "http://example.org/?p=7"
    38723872        },
    38733873        "title": {
     
    38833883            "parent": [
    38843884                {
    3885                     "href": "http://example.org/index.php?rest_route=/wp/v2/pages/5"
     3885                    "href": "http://example.org/index.php?rest_route=/wp/v2/pages/6"
    38863886                }
    38873887            ]
     
    38943894    "date": "2017-02-14T00:00:00",
    38953895    "date_gmt": "2017-02-14T00:00:00",
    3896     "id": 6,
     3896    "id": 7,
    38973897    "modified": "2017-02-14T00:00:00",
    38983898    "modified_gmt": "2017-02-14T00:00:00",
    3899     "parent": 5,
    3900     "slug": "5-revision-v1",
     3899    "parent": 6,
     3900    "slug": "6-revision-v1",
    39013901    "guid": {
    3902         "rendered": "http://example.org/?p=6"
     3902        "rendered": "http://example.org/?p=7"
    39033903    },
    39043904    "title": {
     
    39153915mockedApiResponse.MediaCollection = [
    39163916    {
    3917         "id": 7,
     3917        "id": 8,
    39183918        "date": "2017-02-14T00:00:00",
    39193919        "date_gmt": "2017-02-14T00:00:00",
    39203920        "guid": {
    3921             "rendered": "http://example.org/?attachment_id=7"
     3921            "rendered": "http://example.org/?attachment_id=8"
    39223922        },
    39233923        "modified": "2017-02-14T00:00:00",
     
    39263926        "status": "inherit",
    39273927        "type": "attachment",
    3928         "link": "http://example.org/?attachment_id=7",
     3928        "link": "http://example.org/?attachment_id=8",
    39293929        "title": {
    39303930            "rendered": "REST API Client Fixture: Attachment"
     
    39533953                {
    39543954                    "attributes": [],
    3955                     "href": "http://example.org/index.php?rest_route=/wp/v2/media/7"
     3955                    "href": "http://example.org/index.php?rest_route=/wp/v2/media/8"
    39563956                }
    39573957            ],
     
    39733973                        "embeddable": true
    39743974                    },
    3975                     "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7"
     3975                    "href": "http://example.org/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=8"
    39763976                }
    39773977            ]
     
    39813981
    39823982mockedApiResponse.MediaModel = {
    3983     "id": 7,
     3983    "id": 8,
    39843984    "date": "2017-02-14T00:00:00",
    39853985    "date_gmt": "2017-02-14T00:00:00",
    39863986    "guid": {
    3987         "rendered": "http://example.org/?attachment_id=7"
     3987        "rendered": "http://example.org/?attachment_id=8"
    39883988    },
    39893989    "modified": "2017-02-14T00:00:00",
     
    39923992    "status": "inherit",
    39933993    "type": "attachment",
    3994     "link": "http://example.org/?attachment_id=7",
     3994    "link": "http://example.org/?attachment_id=8",
    39953995    "title": {
    39963996        "rendered": "REST API Client Fixture: Attachment"
     
    44884488    {
    44894489        "id": 2,
    4490         "post": 3,
     4490        "post": 4,
    44914491        "parent": 0,
    44924492        "author": 0,
     
    44984498            "rendered": "<p>This is a comment</p>\n"
    44994499        },
    4500         "link": "http://example.org/?p=3#comment-2",
     4500        "link": "http://example.org/?p=4#comment-2",
    45014501        "status": "approved",
    45024502        "type": "comment",
     
    45244524                    "embeddable": true,
    45254525                    "post_type": "post",
    4526                     "href": "http://example.org/index.php?rest_route=/wp/v2/posts/3"
     4526                    "href": "http://example.org/index.php?rest_route=/wp/v2/posts/4"
    45274527                }
    45284528            ]
     
    45334533mockedApiResponse.CommentModel = {
    45344534    "id": 2,
    4535     "post": 3,
     4535    "post": 4,
    45364536    "parent": 0,
    45374537    "author": 0,
     
    45434543        "rendered": "<p>This is a comment</p>\n"
    45444544    },
    4545     "link": "http://example.org/?p=3#comment-2",
     4545    "link": "http://example.org/?p=4#comment-2",
    45464546    "status": "approved",
    45474547    "type": "comment",
Note: See TracChangeset for help on using the changeset viewer.