From d8a83860bcdfa7261d1da55caae438139445f176 Mon Sep 17 00:00:00 2001 From: kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com> Date: Tue, 22 Oct 2024 14:47:28 +0000 Subject: [bugfix] incorrect /api/v_/instance domain uri fields (#3477) * update instance v1 / v2 endpoints to set uri / domain correctly (i.e. account domain) * fix tests relying on old instance behaviour --- internal/api/client/instance/instancepatch_test.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'internal/api') diff --git a/internal/api/client/instance/instancepatch_test.go b/internal/api/client/instance/instancepatch_test.go index 0b6b02356..5c7923adc 100644 --- a/internal/api/client/instance/instancepatch_test.go +++ b/internal/api/client/instance/instancepatch_test.go @@ -80,7 +80,7 @@ func (suite *InstancePatchTestSuite) TestInstancePatch1() { } suite.Equal(`{ - "uri": "http://localhost:8080", + "uri": "localhost:8080", "account_domain": "localhost:8080", "title": "Example Instance", "description": "

Here's a fuller description of the GoToSocial testrig instance.

This instance is for testing purposes only. It doesn't federate at all. Go check out https://github.com/superseriousbusiness/gotosocial/tree/main/testrig and https://github.com/superseriousbusiness/gotosocial/blob/main/CONTRIBUTING.md#testing

Users on this instance:

If you need to edit the models for the testrig, you can do so at internal/testmodels.go.

", @@ -221,7 +221,7 @@ func (suite *InstancePatchTestSuite) TestInstancePatch2() { } suite.Equal(`{ - "uri": "http://localhost:8080", + "uri": "localhost:8080", "account_domain": "localhost:8080", "title": "Geoff's Instance", "description": "

Here's a fuller description of the GoToSocial testrig instance.

This instance is for testing purposes only. It doesn't federate at all. Go check out https://github.com/superseriousbusiness/gotosocial/tree/main/testrig and https://github.com/superseriousbusiness/gotosocial/blob/main/CONTRIBUTING.md#testing

Users on this instance:

If you need to edit the models for the testrig, you can do so at internal/testmodels.go.

", @@ -362,7 +362,7 @@ func (suite *InstancePatchTestSuite) TestInstancePatch3() { } suite.Equal(`{ - "uri": "http://localhost:8080", + "uri": "localhost:8080", "account_domain": "localhost:8080", "title": "GoToSocial Testrig Instance", "description": "

Here's a fuller description of the GoToSocial testrig instance.

This instance is for testing purposes only. It doesn't federate at all. Go check out https://github.com/superseriousbusiness/gotosocial/tree/main/testrig and https://github.com/superseriousbusiness/gotosocial/blob/main/CONTRIBUTING.md#testing

Users on this instance:

If you need to edit the models for the testrig, you can do so at internal/testmodels.go.

", @@ -554,7 +554,7 @@ func (suite *InstancePatchTestSuite) TestInstancePatch6() { } suite.Equal(`{ - "uri": "http://localhost:8080", + "uri": "localhost:8080", "account_domain": "localhost:8080", "title": "GoToSocial Testrig Instance", "description": "

Here's a fuller description of the GoToSocial testrig instance.

This instance is for testing purposes only. It doesn't federate at all. Go check out https://github.com/superseriousbusiness/gotosocial/tree/main/testrig and https://github.com/superseriousbusiness/gotosocial/blob/main/CONTRIBUTING.md#testing

Users on this instance:

If you need to edit the models for the testrig, you can do so at internal/testmodels.go.

", @@ -717,7 +717,7 @@ func (suite *InstancePatchTestSuite) TestInstancePatch8() { } suite.Equal(`{ - "uri": "http://localhost:8080", + "uri": "localhost:8080", "account_domain": "localhost:8080", "title": "GoToSocial Testrig Instance", "description": "

Here's a fuller description of the GoToSocial testrig instance.

This instance is for testing purposes only. It doesn't federate at all. Go check out https://github.com/superseriousbusiness/gotosocial/tree/main/testrig and https://github.com/superseriousbusiness/gotosocial/blob/main/CONTRIBUTING.md#testing

Users on this instance:

If you need to edit the models for the testrig, you can do so at internal/testmodels.go.

", @@ -899,7 +899,7 @@ func (suite *InstancePatchTestSuite) TestInstancePatch9() { } suite.Equal(`{ - "uri": "http://localhost:8080", + "uri": "localhost:8080", "account_domain": "localhost:8080", "title": "GoToSocial Testrig Instance", "description": "

Here's a fuller description of the GoToSocial testrig instance.

This instance is for testing purposes only. It doesn't federate at all. Go check out https://github.com/superseriousbusiness/gotosocial/tree/main/testrig and https://github.com/superseriousbusiness/gotosocial/blob/main/CONTRIBUTING.md#testing

Users on this instance:

If you need to edit the models for the testrig, you can do so at internal/testmodels.go.

", -- cgit v1.2.3