Skip to content

Commit

Permalink
Fix getting download dir name for develop (#952)
Browse files Browse the repository at this point in the history
* Fix getting download dir name for develop

When getting the download directory name for a package that we want to
put in develop mode, a trailing slash in the URL or the subdir leads to
getting an empty string. To fix the problem we remove the trailing slash
from them at the start of the `getDevelopDownloadDir` procedure.

* Add tests for the `getDevelopDownloadDir` proc

The `getDevelopDownloadDir` procedure is moved in the `download.nim`
module and units tests for it are added.

* Fix the tests on Windows

Fix the `getDevelopDownloadDir` procedure tests on Windows by adding
normalization of the expected paths.
  • Loading branch information
bobeff authored Dec 3, 2021
1 parent 0a23c44 commit 0777f33
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/nimble.nim
Original file line number Diff line number Diff line change
Expand Up @@ -492,22 +492,6 @@ proc developWithDependencies(options: Options): bool =
## with `--with-dependencies` flag.
options.action.typ == actionDevelop and options.action.withDependencies

proc getDevelopDownloadDir(url, subdir: string, options: Options): string =
## Returns the download dir for a develop mode dependency.
assert isURL(url), "The string \"{url}\" is not a URL."

let downloadDirName =
if subdir.len == 0:
parseUri(url).path.splitFile.name
else:
subdir.splitFile.name

result =
if options.action.path.isAbsolute:
options.action.path / downloadDirName
else:
getCurrentDir() / options.action.path / downloadDirName

proc raiseCannotCloneInExistingDirException(downloadDir: string) =
let msg = "Cannot clone into '$1': directory exists." % downloadDir
const hint = "Remove the directory, or run this command somewhere else."
Expand Down
59 changes: 59 additions & 0 deletions src/nimblepkg/download.nim
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,28 @@ proc echoPackageVersions*(pkg: Package) =
echo(" versions: (Remote tag retrieval not supported by " &
$pkg.downloadMethod & ")")

proc removeTrailingSlash(s: string): string =
s.strip(chars = {'/'}, leading = false)

proc getDevelopDownloadDir*(url, subdir: string, options: Options): string =
## Returns the download dir for a develop mode dependency.
assert isURL(url), &"The string \"{url}\" is not a URL."

let url = url.removeTrailingSlash
let subdir = subdir.removeTrailingSlash

let downloadDirName =
if subdir.len == 0:
parseUri(url).path.splitFile.name
else:
subdir.splitFile.name

result =
if options.action.path.isAbsolute:
options.action.path / downloadDirName
else:
getCurrentDir() / options.action.path / downloadDirName

when isMainModule:
import unittest

Expand All @@ -536,3 +558,40 @@ when isMainModule:
newVersion("0.1.1"): "v0.1.1",
newVersion("0.1.0"): "v0.1.0",})
check getVersionList(data) == expected

suite "getDevelopDownloadDir":
let dummyOptionsWithoutPath = Options(action: Action(typ: actionDevelop))
let dummyOptionsWithAbsolutePath = Options(
action: Action(typ: actionDevelop, path: "/some/dir/"))
let dummyOptionsWithRelativePath = Options(
action: Action(typ: actionDevelop, path: "some/dir/"))

test "without subdir and without path":
check getDevelopDownloadDir(
"https://github.com/nimble-test/packagea/", "",
dummyOptionsWithoutPath) == getCurrentDir() / "packagea"

test "without subdir and with absolute path":
check getDevelopDownloadDir(
"https://github.com/nimble-test/packagea", "",
dummyOptionsWithAbsolutePath) == "/some/dir/packagea".normalizedPath

test "without subdir and with relative path":
check getDevelopDownloadDir(
"https://github.com/nimble-test/packagea/", "",
dummyOptionsWithRelativePath) == getCurrentDir() / "some/dir/packagea"

test "with subdir and without path":
check getDevelopDownloadDir(
"https://github.com/nimble-test/multi", "beta",
dummyOptionsWithoutPath) == getCurrentDir() / "beta"

test "with subdir and with absolute path":
check getDevelopDownloadDir(
"https://github.com/nimble-test/multi/", "alpha/",
dummyOptionsWithAbsolutePath) == "/some/dir/alpha".normalizedPath

test "with subdir and with relative path":
check getDevelopDownloadDir(
"https://github.com/nimble-test/multi", "alpha/",
dummyOptionsWithRelativePath) == getCurrentDir() / "some/dir/alpha"

0 comments on commit 0777f33

Please sign in to comment.