[pkgsite] internal/frontend/fetchserver: add test for "synctest" shortcut

3 views
Skip to first unread message

Felix Stein (Gerrit)

unread,
Nov 5, 2025, 4:33:35 PM (5 days ago) Nov 5
to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Felix Stein has uploaded the change for review

Commit message

internal/frontend/fetchserver: add test for "synctest" shortcut

The previous commit 5cd44362491235c04771c4d8dfcacdd265ada373 added tests
that internal packages are not found by a shortcut. This change adds a
test that a package (like synctest) which has an internal and public
package is found.

Updates golang/go#76136
Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35

Change diff

diff --git a/internal/frontend/fetchserver/server_test.go b/internal/frontend/fetchserver/server_test.go
index 23d31bc..b62c02a 100644
--- a/internal/frontend/fetchserver/server_test.go
+++ b/internal/frontend/fetchserver/server_test.go
@@ -169,6 +169,14 @@
name: "asan",
suffix: "internal/asan",
},
+ {
+ name: "synctest",
+ suffix: "internal/synctest",
+ },
+ {
+ name: "synctest",
+ suffix: "testing/synctest",
+ },
},
},
{
@@ -683,6 +691,12 @@
wantLocation: "/net/http",
},
{
+ name: "stdlib shortcut (testing/synctest) with internal package (internal/synctest)",
+ urlPath: "/synctest",
+ wantStatusCode: http.StatusFound,
+ wantLocation: "/testing/synctest",
+ },
+ {
name: "stdlib shortcut with trailing slash",
urlPath: "/http/",
wantStatusCode: http.StatusMovedPermanently,

Change information

Files:
  • M internal/frontend/fetchserver/server_test.go
Change size: S
Delta: 1 file changed, 14 insertions(+), 0 deletions(-)
Open in Gerrit

Related details

Attention set is empty
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
  • requirement is not satisfiedkokoro-CI-Passes
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: newchange
Gerrit-Project: pkgsite
Gerrit-Branch: master
Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
Gerrit-Change-Number: 718280
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Stein <bysto...@gmail.com>
unsatisfied_requirement
satisfied_requirement
open
diffy

Gopher Robot (Gerrit)

unread,
Nov 5, 2025, 4:35:53 PM (5 days ago) Nov 5
to Felix Stein, goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Message from Gopher Robot

Congratulations on opening your first change. Thank you for your contribution!

Next steps:
A maintainer will review your change and provide feedback. See
https://go.dev/doc/contribute#review for more info and tips to get your
patch through code review.

Most changes in the Go project go through a few rounds of revision. This can be
surprising to people new to the project. The careful, iterative review process
is our way of helping mentor contributors and ensuring that their contributions
have a lasting impact.

Open in Gerrit

Related details

Attention set is empty
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
  • requirement is not satisfiedkokoro-CI-Passes
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: pkgsite
Gerrit-Branch: master
Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
Gerrit-Change-Number: 718280
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Stein <bysto...@gmail.com>
Gerrit-CC: Gopher Robot <go...@golang.org>
Gerrit-Comment-Date: Wed, 05 Nov 2025 21:35:49 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
unsatisfied_requirement
satisfied_requirement
open
diffy

Felix Stein (Gerrit)

unread,
Nov 5, 2025, 4:40:53 PM (5 days ago) Nov 5
to goph...@pubsubhelper.golang.org, Gopher Robot, golang-co...@googlegroups.com

Felix Stein added 1 comment

File internal/frontend/fetchserver/server_test.go
Line 154, Patchset 1 (Latest): versions: []string{"v1.13.0"},
Felix Stein . resolved

The synctest package did not exist at this point but I don't think this test data has to match the actual stdlib?

Open in Gerrit

Related details

Attention set is empty
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
  • requirement is not satisfiedkokoro-CI-Passes
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: pkgsite
Gerrit-Branch: master
Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
Gerrit-Change-Number: 718280
Gerrit-PatchSet: 1
Gerrit-Owner: Felix Stein <bysto...@gmail.com>
Gerrit-CC: Gopher Robot <go...@golang.org>
Gerrit-Comment-Date: Wed, 05 Nov 2025 21:40:45 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
unsatisfied_requirement
satisfied_requirement
open
diffy

Nicholas Husin (Gerrit)

unread,
Nov 5, 2025, 4:46:18 PM (5 days ago) Nov 5
to Felix Stein, goph...@pubsubhelper.golang.org, Gopher Robot, golang-co...@googlegroups.com
Attention needed from Felix Stein

Nicholas Husin voted and added 2 comments

Votes added by Nicholas Husin

Commit-Queue+1

2 comments

File internal/frontend/fetchserver/server_test.go
Line 154, Patchset 1 (Latest): versions: []string{"v1.13.0"},
Felix Stein . resolved

The synctest package did not exist at this point but I don't think this test data has to match the actual stdlib?

Nicholas Husin

Indeed, this is just fake data used solely in tests.

I'll trigger our tests, and it should show that everything works fine.

Line 694, Patchset 1 (Latest): name: "stdlib shortcut (testing/synctest) with internal package (internal/synctest)",
Nicholas Husin . unresolved

Thanks for the change!

LGTM. If you'd allow me to be a bit nitpicky here though, I think putting this particular test case just below the other internal ones would be nice :-)

Open in Gerrit

Related details

Attention is currently required from:
  • Felix Stein
Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement is not satisfiedTryBots-Pass
    • requirement is not satisfiedkokoro-CI-Passes
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: pkgsite
    Gerrit-Branch: master
    Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
    Gerrit-Change-Number: 718280
    Gerrit-PatchSet: 1
    Gerrit-Owner: Felix Stein <bysto...@gmail.com>
    Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Attention: Felix Stein <bysto...@gmail.com>
    Gerrit-Comment-Date: Wed, 05 Nov 2025 21:46:15 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: Yes
    Comment-In-Reply-To: Felix Stein <bysto...@gmail.com>
    unsatisfied_requirement
    open
    diffy

    Felix Stein (Gerrit)

    unread,
    Nov 5, 2025, 4:51:08 PM (5 days ago) Nov 5
    to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
    Attention needed from Felix Stein and Nicholas Husin

    Felix Stein uploaded new patchset

    Felix Stein uploaded patch set #2 to this change.
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Felix Stein
    • Nicholas Husin
    Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement is not satisfiedTryBots-Pass
    • requirement is not satisfiedkokoro-CI-Passes
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: newpatchset
    Gerrit-Project: pkgsite
    Gerrit-Branch: master
    Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
    Gerrit-Change-Number: 718280
    Gerrit-PatchSet: 2
    Gerrit-Owner: Felix Stein <bysto...@gmail.com>
    Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-CC: kokoro <noreply...@google.com>
    Gerrit-Attention: Felix Stein <bysto...@gmail.com>
    Gerrit-Attention: Nicholas Husin <n...@golang.org>
    unsatisfied_requirement
    open
    diffy

    Felix Stein (Gerrit)

    unread,
    Nov 5, 2025, 4:52:29 PM (5 days ago) Nov 5
    to goph...@pubsubhelper.golang.org, Go LUCI, kokoro, Nicholas Husin, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Nicholas Husin

    Felix Stein added 1 comment

    File internal/frontend/fetchserver/server_test.go
    Line 694, Patchset 1: name: "stdlib shortcut (testing/synctest) with internal package (internal/synctest)",
    Nicholas Husin . resolved

    Thanks for the change!

    LGTM. If you'd allow me to be a bit nitpicky here though, I think putting this particular test case just below the other internal ones would be nice :-)

    Felix Stein

    Moved the test. The two test above the old location were doing shortcut tests so I thought that would be a fine place.

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Nicholas Husin
    Submit Requirements:
      • requirement is not satisfiedCode-Review
      • requirement satisfiedNo-Unresolved-Comments
      • requirement is not satisfiedReview-Enforcement
      • requirement is not satisfiedTryBots-Pass
      • requirement is not satisfiedkokoro-CI-Passes
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: pkgsite
      Gerrit-Branch: master
      Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
      Gerrit-Change-Number: 718280
      Gerrit-PatchSet: 2
      Gerrit-Owner: Felix Stein <bysto...@gmail.com>
      Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: kokoro <noreply...@google.com>
      Gerrit-Attention: Nicholas Husin <n...@golang.org>
      Gerrit-Comment-Date: Wed, 05 Nov 2025 21:52:21 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      Comment-In-Reply-To: Nicholas Husin <n...@golang.org>
      unsatisfied_requirement
      satisfied_requirement
      open
      diffy

      Nicholas Husin (Gerrit)

      unread,
      Nov 5, 2025, 4:56:37 PM (5 days ago) Nov 5
      to Felix Stein, goph...@pubsubhelper.golang.org, Go LUCI, kokoro, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Felix Stein

      Nicholas Husin voted

      Auto-Submit+1
      Code-Review+2
      Commit-Queue+1
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Felix Stein
      Submit Requirements:
      • requirement satisfiedCode-Review
      • requirement satisfiedNo-Unresolved-Comments
      • requirement is not satisfiedReview-Enforcement
      • requirement is not satisfiedTryBots-Pass
      • requirement is not satisfiedkokoro-CI-Passes
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: pkgsite
      Gerrit-Branch: master
      Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
      Gerrit-Change-Number: 718280
      Gerrit-PatchSet: 2
      Gerrit-Owner: Felix Stein <bysto...@gmail.com>
      Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: kokoro <noreply...@google.com>
      Gerrit-Attention: Felix Stein <bysto...@gmail.com>
      Gerrit-Comment-Date: Wed, 05 Nov 2025 21:56:33 +0000
      Gerrit-HasComments: No
      Gerrit-Has-Labels: Yes
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Nicholas Husin (Gerrit)

      unread,
      Nov 5, 2025, 4:56:43 PM (5 days ago) Nov 5
      to Felix Stein, goph...@pubsubhelper.golang.org, Nicholas Husin, Go LUCI, kokoro, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Felix Stein

      Nicholas Husin voted Code-Review+1

      Code-Review+1
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Felix Stein
      Submit Requirements:
      • requirement satisfiedCode-Review
      • requirement satisfiedNo-Unresolved-Comments
      • requirement is not satisfiedReview-Enforcement
      • requirement is not satisfiedTryBots-Pass
      • requirement is not satisfiedkokoro-CI-Passes
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: pkgsite
      Gerrit-Branch: master
      Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
      Gerrit-Change-Number: 718280
      Gerrit-PatchSet: 2
      Gerrit-Owner: Felix Stein <bysto...@gmail.com>
      Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
      Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: kokoro <noreply...@google.com>
      Gerrit-Attention: Felix Stein <bysto...@gmail.com>
      Gerrit-Comment-Date: Wed, 05 Nov 2025 21:56:38 +0000
      Gerrit-HasComments: No
      Gerrit-Has-Labels: Yes
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Junyang Shao (Gerrit)

      unread,
      Nov 5, 2025, 4:57:16 PM (5 days ago) Nov 5
      to Felix Stein, goph...@pubsubhelper.golang.org, Nicholas Husin, Nicholas Husin, Go LUCI, kokoro, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Felix Stein

      Junyang Shao voted Code-Review+1

      Code-Review+1
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Felix Stein
      Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement is not satisfiedTryBots-Pass
        • requirement is not satisfiedkokoro-CI-Passes
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: comment
        Gerrit-Project: pkgsite
        Gerrit-Branch: master
        Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
        Gerrit-Change-Number: 718280
        Gerrit-PatchSet: 2
        Gerrit-Owner: Felix Stein <bysto...@gmail.com>
        Gerrit-Reviewer: Junyang Shao <shaoj...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: kokoro <noreply...@google.com>
        Gerrit-Attention: Felix Stein <bysto...@gmail.com>
        Gerrit-Comment-Date: Wed, 05 Nov 2025 21:57:13 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        kokoro (Gerrit)

        unread,
        Nov 5, 2025, 5:11:50 PM (5 days ago) Nov 5
        to Felix Stein, goph...@pubsubhelper.golang.org, Go LUCI, Junyang Shao, Nicholas Husin, Nicholas Husin, Gopher Robot, golang-co...@googlegroups.com
        Attention needed from Felix Stein

        kokoro voted kokoro-CI+1

        Kokoro presubmit build finished with status: SUCCESS
        Logs at: https://source.cloud.google.com/results/invocations/2dbcdb2c-2abc-4fa6-9c2a-d774d55d13ea

        kokoro-CI+1
        Open in Gerrit

        Related details

        Attention is currently required from:
        • Felix Stein
        Submit Requirements:
          • requirement satisfiedCode-Review
          • requirement satisfiedNo-Unresolved-Comments
          • requirement satisfiedReview-Enforcement
          • requirement satisfiedTryBots-Pass
          • requirement is not satisfiedkokoro-CI-Passes
          Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
          Gerrit-MessageType: comment
          Gerrit-Project: pkgsite
          Gerrit-Branch: master
          Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
          Gerrit-Change-Number: 718280
          Gerrit-PatchSet: 1
          Gerrit-Owner: Felix Stein <bysto...@gmail.com>
          Gerrit-Reviewer: Junyang Shao <shaoj...@google.com>
          Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
          Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
          Gerrit-Reviewer: kokoro <noreply...@google.com>
          Gerrit-CC: Gopher Robot <go...@golang.org>
          Gerrit-CC: kokoro <noreply...@google.com>
          Gerrit-Attention: Felix Stein <bysto...@gmail.com>
          Gerrit-Comment-Date: Wed, 05 Nov 2025 22:11:45 +0000
          Gerrit-HasComments: No
          Gerrit-Has-Labels: Yes
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          kokoro (Gerrit)

          unread,
          Nov 5, 2025, 5:12:56 PM (5 days ago) Nov 5
          to Felix Stein, goph...@pubsubhelper.golang.org, Go LUCI, Junyang Shao, Nicholas Husin, Nicholas Husin, Gopher Robot, golang-co...@googlegroups.com
          Attention needed from Felix Stein

          kokoro voted kokoro-CI-1

          Kokoro presubmit build finished with status: FAILURE
          Logs at: https://source.cloud.google.com/results/invocations/f6593093-f7c4-45db-ba04-896651e249cf

          kokoro-CI-1
          Open in Gerrit

          Related details

          Attention is currently required from:
          • Felix Stein
          Submit Requirements:
          • requirement satisfiedCode-Review
          • requirement satisfiedNo-Unresolved-Comments
          • requirement satisfiedReview-Enforcement
          • requirement satisfiedTryBots-Pass
          • requirement is not satisfiedkokoro-CI-Passes
          Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
          Gerrit-MessageType: comment
          Gerrit-Project: pkgsite
          Gerrit-Branch: master
          Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
          Gerrit-Change-Number: 718280
          Gerrit-PatchSet: 2
          Gerrit-Owner: Felix Stein <bysto...@gmail.com>
          Gerrit-Reviewer: Junyang Shao <shaoj...@google.com>
          Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
          Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
          Gerrit-Reviewer: kokoro <noreply...@google.com>
          Gerrit-CC: Gopher Robot <go...@golang.org>
          Gerrit-CC: kokoro <noreply...@google.com>
          Gerrit-Attention: Felix Stein <bysto...@gmail.com>
          Gerrit-Comment-Date: Wed, 05 Nov 2025 22:12:52 +0000
          Gerrit-HasComments: No
          Gerrit-Has-Labels: Yes
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Nicholas Husin (Gerrit)

          unread,
          Nov 5, 2025, 5:23:43 PM (5 days ago) Nov 5
          to Felix Stein, goph...@pubsubhelper.golang.org, kokoro, Go LUCI, Junyang Shao, Nicholas Husin, Gopher Robot, golang-co...@googlegroups.com
          Attention needed from Felix Stein

          Nicholas Husin voted and added 1 comment

          Votes added by Nicholas Husin

          Commit-Queue+1

          1 comment

          Patchset-level comments
          File-level comment, Patchset 2 (Latest):
          Nicholas Husin . resolved

          Hmm, Kokoro is unexpectedly failing.
          Seems to be an unrelated error and likely to be a flake from a quick read though.

          Revoting to retrigger Kokoro.

          Gerrit-Comment-Date: Wed, 05 Nov 2025 22:23:40 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: Yes
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Nicholas Husin (Gerrit)

          unread,
          Nov 5, 2025, 9:09:43 PM (5 days ago) Nov 5
          to Felix Stein, goph...@pubsubhelper.golang.org, kokoro, Go LUCI, Junyang Shao, Nicholas Husin, Gopher Robot, golang-co...@googlegroups.com

          Nicholas Husin removed a vote from this change

          Removed kokoro-CI-1 by kokoro <noreply...@google.com>
          Open in Gerrit

          Related details

          Attention set is empty
          Submit Requirements:
          • requirement satisfiedCode-Review
          • requirement satisfiedNo-Unresolved-Comments
          • requirement satisfiedReview-Enforcement
          • requirement satisfiedTryBots-Pass
          • requirement is not satisfiedkokoro-CI-Passes
          Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
          Gerrit-MessageType: deleteVote
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Nicholas Husin (Gerrit)

          unread,
          Nov 5, 2025, 9:11:51 PM (5 days ago) Nov 5
          to Felix Stein, goph...@pubsubhelper.golang.org, Junyang Shao, Nicholas Husin, Gopher Robot, golang-co...@googlegroups.com

          Nicholas Husin voted and added 1 comment

          Votes added by Nicholas Husin

          Commit-Queue+1

          1 comment

          Patchset-level comments
          Nicholas Husin . resolved

          Hmm, Kokoro is unexpectedly failing.
          Seems to be an unrelated error and likely to be a flake from a quick read though.

          Revoting to retrigger Kokoro.

          Nicholas Husin

          Still didn't trigger :-(

          Let's try again after removing the `kokoro-CI-1` vote and the Kokoro reviewer.

          Open in Gerrit

          Related details

          Attention set is empty
          Submit Requirements:
            • requirement satisfiedCode-Review
            • requirement satisfiedNo-Unresolved-Comments
            • requirement satisfiedReview-Enforcement
            • requirement is not satisfiedTryBots-Pass
            • requirement is not satisfiedkokoro-CI-Passes
            Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
            Gerrit-MessageType: comment
            Gerrit-Project: pkgsite
            Gerrit-Branch: master
            Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
            Gerrit-Change-Number: 718280
            Gerrit-PatchSet: 2
            Gerrit-Owner: Felix Stein <bysto...@gmail.com>
            Gerrit-Reviewer: Junyang Shao <shaoj...@google.com>
            Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
            Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
            Gerrit-CC: Gopher Robot <go...@golang.org>
            Gerrit-Comment-Date: Thu, 06 Nov 2025 02:11:48 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: Yes
            Comment-In-Reply-To: Nicholas Husin <n...@golang.org>
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Nicholas Husin (Gerrit)

            unread,
            Nov 5, 2025, 9:26:45 PM (5 days ago) Nov 5
            to Felix Stein, goph...@pubsubhelper.golang.org, Go LUCI, Junyang Shao, Nicholas Husin, Gopher Robot, golang-co...@googlegroups.com

            Nicholas Husin voted and added 1 comment

            Votes added by Nicholas Husin

            TryBot-Bypass+1

            1 comment

            Patchset-level comments
            Nicholas Husin . resolved

            Hmm, Kokoro is unexpectedly failing.
            Seems to be an unrelated error and likely to be a flake from a quick read though.

            Revoting to retrigger Kokoro.

            Nicholas Husin

            Still didn't trigger :-(

            Let's try again after removing the `kokoro-CI-1` vote and the Kokoro reviewer.

            Nicholas Husin

            Ouch, I guess triggering a new Kokoro run requires uploading a new Patchset (i.e. the uploader can run `git commit --amend --date=now --no-edit` and re-upload the CL).

            Given that Kokoro had a passing build with the same content from earlier though (http://sponge2.corp.google.com/2dbcdb2c-2abc-4fa6-9c2a-d774d55d13ea), it seems fair to bypass this rather than unduly burdening the uploader.

            Open in Gerrit

            Related details

            Attention set is empty
            Submit Requirements:
              • requirement satisfiedCode-Review
              • requirement satisfiedNo-Unresolved-Comments
              • requirement satisfiedReview-Enforcement
              • requirement satisfiedTryBots-Pass
              • requirement satisfiedkokoro-CI-Passes
              Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
              Gerrit-MessageType: comment
              Gerrit-Project: pkgsite
              Gerrit-Branch: master
              Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
              Gerrit-Change-Number: 718280
              Gerrit-PatchSet: 2
              Gerrit-Owner: Felix Stein <bysto...@gmail.com>
              Gerrit-Reviewer: Junyang Shao <shaoj...@google.com>
              Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
              Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
              Gerrit-CC: Gopher Robot <go...@golang.org>
              Gerrit-Comment-Date: Thu, 06 Nov 2025 02:26:42 +0000
              satisfied_requirement
              open
              diffy

              Nicholas Husin (Gerrit)

              unread,
              Nov 5, 2025, 9:26:53 PM (5 days ago) Nov 5
              to Felix Stein, goph...@pubsubhelper.golang.org, golang-...@googlegroups.com, Go LUCI, Junyang Shao, Nicholas Husin, Gopher Robot, golang-co...@googlegroups.com

              Nicholas Husin submitted the change

              Change information

              Commit message:
              internal/frontend/fetchserver: add test for "synctest" shortcut

              The previous commit 5cd44362491235c04771c4d8dfcacdd265ada373 added tests
              that internal packages are not found by a shortcut. This change adds a
              test that a package (like synctest) which has an internal and public
              package is found.

              Updates golang/go#76136
              Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
              TryBot-Bypass: Nicholas Husin <n...@golang.org>
              Reviewed-by: Nicholas Husin <n...@golang.org>
              Reviewed-by: Junyang Shao <shaoj...@google.com>
              Reviewed-by: Nicholas Husin <hu...@google.com>
              Auto-Submit: Nicholas Husin <n...@golang.org>
              Files:
              • M internal/frontend/fetchserver/server_test.go
              Change size: S
              Delta: 1 file changed, 14 insertions(+), 0 deletions(-)
              Branch: refs/heads/master
              Submit Requirements:
              • requirement satisfiedCode-Review: +1 by Nicholas Husin, +1 by Junyang Shao, +2 by Nicholas Husin
              • requirement satisfiedTryBots-Pass: LUCI-TryBot-Result+1 by Go LUCI, TryBot-Bypass+1 by Nicholas Husin
              • requirement satisfiedkokoro-CI-Passes: TryBot-Bypass+1 by Nicholas Husin
              Open in Gerrit
              Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
              Gerrit-MessageType: merged
              Gerrit-Project: pkgsite
              Gerrit-Branch: master
              Gerrit-Change-Id: I80297ee6fff7fbb1c2d5bd2188a387a39f24ac35
              Gerrit-Change-Number: 718280
              Gerrit-PatchSet: 3
              open
              diffy
              satisfied_requirement
              Reply all
              Reply to author
              Forward
              0 new messages