From ef52d48e2e6dccb9047a58c7ec1d90da4f2aa00d Mon Sep 17 00:00:00 2001 From: EBADBEEF Date: Tue, 21 Nov 2023 20:41:18 -0800 Subject: [PATCH] bitbucket.org integration tests --- tests/test_bitbucket.py | 80 ++++++++++++++++++++++++++++++++++++ tests/testpkgs/bitbucket.nix | 28 +++++++++++++ tests/testpkgs/default.nix | 2 + 3 files changed, 110 insertions(+) create mode 100644 tests/test_bitbucket.py create mode 100644 tests/testpkgs/bitbucket.nix diff --git a/tests/test_bitbucket.py b/tests/test_bitbucket.py new file mode 100644 index 0000000..d91dc24 --- /dev/null +++ b/tests/test_bitbucket.py @@ -0,0 +1,80 @@ +import subprocess + +import conftest + +from nix_update import main + + +# integration test for bitbucket versions (fetch_bitbucket_versions), mostly +# copied from test_gitea.py. +# run directly with 'nix develop -c pytest -s ./tests/test_bitbucket.py'. +def test_version(helpers: conftest.Helpers) -> None: + with helpers.testpkgs(init_git=True) as path: + main(["--file", str(path), "--commit", "bitbucket"]) + version = subprocess.run( + [ + "nix", + "eval", + "--raw", + "--extra-experimental-features", + "nix-command", + "-f", + path, + "bitbucket.version", + ], + check=True, + text=True, + stdout=subprocess.PIPE, + ).stdout.strip() + assert tuple(map(int, version.split("."))) > (1, 0) + commit = subprocess.run( + ["git", "-C", path, "log", "-1"], + text=True, + stdout=subprocess.PIPE, + check=True, + ).stdout.strip() + print(commit) + assert version in commit + assert "bitbucket" in commit + assert "/jongsoftdev/youless-python-bridge/branches/compare/" in commit + assert "%0D1.0" in commit + + +# integration test for bitbucket snapshots +def test_snapshot(helpers: conftest.Helpers) -> None: + with helpers.testpkgs(init_git=True) as path: + main( + [ + "--file", + str(path), + "--commit", + "--version=branch=master", + "bitbucket-snapshot", + ] + ) + version = subprocess.run( + [ + "nix", + "eval", + "--raw", + "--extra-experimental-features", + "nix-command", + "-f", + path, + "bitbucket-snapshot.version", + ], + check=True, + text=True, + stdout=subprocess.PIPE, + ).stdout.strip() + commit = subprocess.run( + ["git", "-C", path, "log", "-1"], + text=True, + stdout=subprocess.PIPE, + check=True, + ).stdout.strip() + print(commit) + assert version in commit + assert "bitbucket" in commit + assert "/jongsoftdev/youless-python-bridge/branches/compare/" in commit + assert "%0Dc04342ef36dd5ba8f7d9b9fce2fb4926ef401fd5" in commit diff --git a/tests/testpkgs/bitbucket.nix b/tests/testpkgs/bitbucket.nix new file mode 100644 index 0000000..affd956 --- /dev/null +++ b/tests/testpkgs/bitbucket.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromBitbucket, isSnapshot }: + +let + # Why this package? No reason, I just found a small package that uses tags + # for release by grepping through nixpkgs for fetchFromBitbucket. + owner = "jongsoftdev"; + repo = "youless-python-bridge"; + # As of 2023-11-22, latest version is 1.0.1, so we will be testing that it + # finds a version greater than 1.0. The rev from 2022-10-01 is an untagged + # commit. + version = + if (isSnapshot) + then "unstable-2022-10-01" + else "1.0"; + rev = + if (isSnapshot) + then "c04342ef36dd5ba8f7d9b9fce2fb4926ef401fd5" + else "1.0"; +in +stdenv.mkDerivation rec { + pname = repo; + inherit version; + src = fetchFromBitbucket { + inherit owner repo version rev; + # dont care about hash + hash = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; + }; +} diff --git a/tests/testpkgs/default.nix b/tests/testpkgs/default.nix index 28d535f..0da7f34 100644 --- a/tests/testpkgs/default.nix +++ b/tests/testpkgs/default.nix @@ -1,5 +1,7 @@ { pkgs ? import { } }: { + bitbucket = pkgs.callPackage ./bitbucket.nix { isSnapshot = false; }; + bitbucket-snapshot = pkgs.callPackage ./bitbucket.nix { isSnapshot = true; }; cargoLock.expand = pkgs.callPackage ./cargo-lock-expand { }; cargoLock.update = pkgs.callPackage ./cargo-lock-update { }; crate = pkgs.callPackage ./crate.nix { };