Nothing
test_that("install_gitlab", {
skip_on_cran()
skip_if_offline()
Sys.unsetenv("R_TESTS")
lib <- tempfile()
on.exit(unlink(lib, recursive = TRUE), add = TRUE)
dir.create(lib)
install_gitlab("jimhester/falsy", lib = lib, quiet = TRUE)
expect_silent(packageDescription("falsy", lib.loc = lib))
expect_equal(
packageDescription("falsy", lib.loc = lib)$RemoteRepo,
"falsy")
remote <- package2remote("falsy", lib = lib)
expect_s3_class(remote, "remote")
expect_s3_class(remote, "gitlab_remote")
expect_equal(format(remote), "GitLab")
expect_equal(remote$host, "gitlab.com")
expect_equal(remote$username, "jimhester")
expect_equal(remote$repo, "falsy")
expect_equal(remote$ref, "HEAD")
expect_equal(remote$subdir, NULL)
expect_true(!is.na(remote$sha) && nzchar(remote$sha))
})
test_that("install_gitlab with subgroups and special characters", {
skip_on_cran()
skip_if_offline()
Sys.unsetenv("R_TESTS")
lib <- tempfile()
on.exit(unlink(lib, recursive = TRUE), add = TRUE)
dir.create(lib)
install_gitlab("r-lib-grp/my-awesome-group/test.pkg", lib = lib, quiet = TRUE)
expect_silent(packageDescription("test123", lib.loc = lib))
expect_equal(
packageDescription("test123", lib.loc = lib)$RemoteRepo,
"my-awesome-group/test.pkg")
remote <- package2remote("test123", lib = lib)
expect_equal(remote$username, "r-lib-grp")
expect_equal(remote$repo, "my-awesome-group/test.pkg")
expect_equal(remote$subdir, NULL)
install_gitlab("r-lib-grp/test-pkg", lib = lib, quiet = TRUE)
expect_silent(packageDescription("test123", lib.loc = lib))
expect_equal(
packageDescription("test123", lib.loc = lib)$RemoteRepo,
"test-pkg")
remote <- package2remote("test123", lib = lib)
expect_equal(remote$username, "r-lib-grp")
expect_equal(remote$repo, "test-pkg")
expect_equal(remote$subdir, NULL)
})
test_that("error if not username, warning if given as argument", {
skip_on_cran()
skip_if_offline()
Sys.unsetenv("R_TESTS")
lib <- tempfile()
on.exit(unlink(lib, recursive = TRUE), add = TRUE)
dir.create(lib)
expect_error(
install_gitlab("falsy", lib = lib, quiet = TRUE)
)
})
test_that("remote_download.gitlab_remote messages", {
skip_on_cran()
skip_if_offline()
mockery::stub(remote_download.gitlab_remote, "download", TRUE)
expect_message(
remote_download.gitlab_remote(
remote("gitlab",
host = "https://gitlab.com",
username = "jimhester",
repo = "falsy",
ref = "HEAD"
)
),
"Downloading GitLab repo"
)
})
test_that("remote_sha.gitlab_remote", {
skip_on_cran()
skip_if_offline()
expect_equal(
remote_sha(
remote("gitlab",
host = "https://gitlab.com",
username = "jimhester",
repo = "falsy",
ref = "1.0"
)
),
"0f39d9eb735bf16909831c0bb129063dda388375"
)
})
test_that("gitlab_project_id", {
skip_on_cran()
skip_if_offline()
expect_equal(
gitlab_project_id(
username = "jimhester",
repo = "covr",
host = "https://gitlab.com",
ref = "HEAD"
),
1486846
)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.