Permalink
Cannot retrieve contributors at this time
185 lines (174 sloc)
6.57 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
setup-dotnet/__tests__/__snapshots__/authutil.test.ts.snap
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains 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
// Jest Snapshot v1, https://goo.gl/fbAQLP | |
exports[`authutil tests existing config not in repo root, sets up a partial NuGet.config user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</config> | |
<packageSourceCredentials> | |
<GPR> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</GPR> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests existing config w/ Azure Artifacts source and NuGet.org, sets up a partial NuGet.config user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://pkgs.dev.azure.com/amullans/_packaging/GitHubBuilds/nuget/v3/index.json\\"/> | |
</config> | |
<packageSourceCredentials> | |
<AzureArtifacts> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</AzureArtifacts> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests existing config w/ GPR source and NuGet.org, sets up a partial NuGet.config user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</config> | |
<packageSourceCredentials> | |
<GPR> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</GPR> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests existing config w/ no GPR sources, sets up a full NuGet.config with URL and user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</config> | |
<packageSources> | |
<add key=\\"Source\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</packageSources> | |
<packageSourceCredentials> | |
<Source> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</Source> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests existing config w/ no sources, sets up a full NuGet.config with URL and user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</config> | |
<packageSources> | |
<add key=\\"Source\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</packageSources> | |
<packageSourceCredentials> | |
<Source> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</Source> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests existing config w/ only Azure Artifacts source, sets up a partial NuGet.config user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://pkgs.dev.azure.com/amullans/_packaging/GitHubBuilds/nuget/v3/index.json\\"/> | |
</config> | |
<packageSourceCredentials> | |
<AzureArtifacts> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</AzureArtifacts> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests existing config w/ only GPR source, sets up a partial NuGet.config user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</config> | |
<packageSourceCredentials> | |
<GPR> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</GPR> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests existing config w/ two GPR sources, sets up a partial NuGet.config user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://nuget.pkg.github.com\\"/> | |
</config> | |
<packageSourceCredentials> | |
<GPR-GitHub> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</GPR-GitHub> | |
<GPR-Actions> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</GPR-Actions> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests no existing config, sets up a full NuGet.config with URL and other owner/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://nuget.pkg.github.com/otherorg/index.json\\"/> | |
</config> | |
<packageSources> | |
<add key=\\"Source\\" value=\\"https://nuget.pkg.github.com/otherorg/index.json\\"/> | |
</packageSources> | |
<packageSourceCredentials> | |
<Source> | |
<add key=\\"Username\\" value=\\"otherorg\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</Source> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests no existing config, sets up a full NuGet.config with URL and token for other source 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://pkgs.dev.azure.com/amullans/_packaging/GitHubBuilds/nuget/v3/index.json\\"/> | |
</config> | |
<packageSources> | |
<add key=\\"Source\\" value=\\"https://pkgs.dev.azure.com/amullans/_packaging/GitHubBuilds/nuget/v3/index.json\\"/> | |
</packageSources> | |
<packageSourceCredentials> | |
<Source> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</Source> | |
</packageSourceCredentials> | |
</configuration>" | |
`; | |
exports[`authutil tests no existing config, sets up a full NuGet.config with URL and user/PAT for GPR 1`] = ` | |
"<?xml version=\\"1.0\\"?> | |
<configuration> | |
<config> | |
<add key=\\"defaultPushSource\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</config> | |
<packageSources> | |
<add key=\\"Source\\" value=\\"https://nuget.pkg.github.com/OwnerName/index.json\\"/> | |
</packageSources> | |
<packageSourceCredentials> | |
<Source> | |
<add key=\\"Username\\" value=\\"OwnerName\\"/> | |
<add key=\\"ClearTextPassword\\" value=\\"TEST_FAKE_AUTH_TOKEN\\"/> | |
</Source> | |
</packageSourceCredentials> | |
</configuration>" | |
`; |