Files
kjol/tools/tsgo/internal/fourslash/tests/manual/pathCompletionsPackageJsonExportsWildcard4_test.go
2026-07-09 16:50:43 -04:00

131 lines
3.7 KiB
Go

package fourslash_test
import (
"testing"
"github.com/microsoft/typescript-go/internal/fourslash"
. "github.com/microsoft/typescript-go/internal/fourslash/tests/util"
"github.com/microsoft/typescript-go/internal/lsp/lsproto"
"github.com/microsoft/typescript-go/internal/testutil"
)
func TestPathCompletionsPackageJsonExportsWildcard4(t *testing.T) {
t.Parallel()
defer testutil.RecoverAndFail(t, "Panic on fourslash test")
const content = `// @module: node18
// @Filename: /node_modules/foo/package.json
{
"types": "index.d.ts",
"exports": {
"./*": "dist/*",
"./foo/*": "dist/*",
"./bar/*": "dist/*",
"./exact-match": "dist/index.d.ts"
}
}
// @Filename: /node_modules/foo/nope.d.ts
export const nope = 0;
// @Filename: /node_modules/foo/dist/index.d.ts
export const index = 0;
// @Filename: /node_modules/foo/dist/blah.d.ts
export const blah = 0;
// @Filename: /node_modules/foo/dist/foo/onlyInFooFolder.d.ts
export const foo = 0;
// @Filename: /node_modules/foo/dist/subfolder/one.d.ts
export const one = 0;
// @Filename: /a.mts
import { } from "foo//**/";`
f, done := fourslash.NewFourslash(t, nil /*capabilities*/, content)
defer done()
f.VerifyCompletions(t, "", &fourslash.CompletionsExpectedList{
IsIncomplete: false,
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
CommitCharacters: &[]string{},
EditRange: Ignored,
},
Items: &fourslash.CompletionsExpectedItems{
Unsorted: []fourslash.CompletionsExpectedItem{
&lsproto.CompletionItem{
Label: "blah.js",
Kind: new(lsproto.CompletionItemKindFile),
Detail: new("blah.js"),
},
&lsproto.CompletionItem{
Label: "index.js",
Kind: new(lsproto.CompletionItemKindFile),
Detail: new("index.js"),
},
&lsproto.CompletionItem{
Label: "foo",
Kind: new(lsproto.CompletionItemKindFolder),
Detail: new("foo"),
},
&lsproto.CompletionItem{
Label: "subfolder",
Kind: new(lsproto.CompletionItemKindFolder),
Detail: new("subfolder"),
},
&lsproto.CompletionItem{
Label: "bar",
Kind: new(lsproto.CompletionItemKindFolder),
Detail: new("bar"),
},
&lsproto.CompletionItem{
Label: "exact-match",
Kind: new(lsproto.CompletionItemKindFile),
Detail: new("exact-match.d.ts"),
},
},
},
})
f.Insert(t, "foo/")
f.VerifyCompletions(t, nil, &fourslash.CompletionsExpectedList{
IsIncomplete: false,
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
CommitCharacters: &[]string{},
EditRange: Ignored,
},
Items: &fourslash.CompletionsExpectedItems{
Unsorted: []fourslash.CompletionsExpectedItem{
&lsproto.CompletionItem{
Label: "blah.js",
Kind: new(lsproto.CompletionItemKindFile),
Detail: new("blah.js"),
},
&lsproto.CompletionItem{
Label: "index.js",
Kind: new(lsproto.CompletionItemKindFile),
Detail: new("index.js"),
},
&lsproto.CompletionItem{
Label: "foo",
Kind: new(lsproto.CompletionItemKindFolder),
Detail: new("foo"),
},
&lsproto.CompletionItem{
Label: "subfolder",
Kind: new(lsproto.CompletionItemKindFolder),
Detail: new("subfolder"),
},
},
},
})
f.Insert(t, "foo/")
f.VerifyCompletions(t, nil, &fourslash.CompletionsExpectedList{
IsIncomplete: false,
ItemDefaults: &fourslash.CompletionsExpectedItemDefaults{
CommitCharacters: &[]string{},
EditRange: Ignored,
},
Items: &fourslash.CompletionsExpectedItems{
Unsorted: []fourslash.CompletionsExpectedItem{
&lsproto.CompletionItem{
Label: "onlyInFooFolder.js",
Kind: new(lsproto.CompletionItemKindFile),
Detail: new("onlyInFooFolder.js"),
},
},
},
})
}