Skip to content

Commit 4c4cb7a

Browse files
authored
Tests: Misc package manager test improvements (heroku#1738)
Backports some test naming/strategy improvements from the CNB, along with some general classic-specific clean-ups. Towards heroku#1616. GUS-W-17679633.
1 parent b90a475 commit 4c4cb7a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+182
-327
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.

spec/fixtures/pipenv_and_requirements_txt/Pipfile spec/fixtures/multiple_package_managers/Pipfile

-6
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,3 @@ verify_ssl = true
44
name = "pypi"
55

66
[packages]
7-
urllib3 = "*"
8-
9-
[dev-packages]
10-
11-
[requires]
12-
python_version = "3.13"

spec/fixtures/multiple_package_managers/Pipfile.lock

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/fixtures/multiple_package_managers/poetry.lock

Whitespace-only changes.

spec/fixtures/multiple_package_managers/pyproject.toml

Whitespace-only changes.

spec/fixtures/multiple_package_managers/requirements.txt

Whitespace-only changes.

spec/fixtures/multiple_package_managers/setup.py

Whitespace-only changes.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# This shouldn't be installed, since requirements-test.txt should only be used on Heroku CI.
2+
pytest

spec/fixtures/pip_basic/setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# This tests that the setup.py fallback is not used when other package manager files exist.
2+
raise RuntimeError("setup.py should not be run!")
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# A quick to install package that relies on the Python headers from the base image.
2+
git+https://github.com/pypa/[email protected]#egg=extension.dist&subdirectory=tests/testdata/extension.dist
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pysqlite3

spec/fixtures/pipenv_and_requirements_txt/Pipfile.lock

-30
This file was deleted.

spec/fixtures/pipenv_and_requirements_txt/requirements.txt

-1
This file was deleted.

spec/fixtures/pipenv_basic/setup.py

+2-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,2 @@
1-
# This file is here to confirm we don't try and create the fallback requirements
2-
# file containing '-e .' when using Pipenv.
3-
4-
from setuptools import setup
5-
6-
setup(
7-
name='test',
8-
install_requires=['six'],
9-
)
1+
# This tests that the setup.py fallback is not used when other package manager files exist.
2+
raise RuntimeError("setup.py should not be run!")

spec/fixtures/poetry_basic/setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# This tests that the setup.py fallback is not used when other package manager files exist.
2+
raise RuntimeError("setup.py should not be run!")

spec/fixtures/requirements_compiled/requirements.txt

-6
This file was deleted.

spec/fixtures/requirements_txt_and_poetry_lock/poetry.lock

-17
This file was deleted.

spec/fixtures/requirements_txt_and_poetry_lock/pyproject.toml

-6
This file was deleted.

spec/fixtures/requirements_txt_and_poetry_lock/requirements.txt

-2
This file was deleted.

spec/fixtures/requirements_txt_and_setup_py/requirements.txt

-1
This file was deleted.

spec/fixtures/requirements_txt_and_setup_py/setup.py

-6
This file was deleted.

spec/hatchet/ci_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
let(:buildpacks) { [:default, 'heroku-community/inline'] }
77

88
context 'when using pip' do
9-
let(:app) { Hatchet::Runner.new('spec/fixtures/ci_requirements', buildpacks:) }
9+
let(:app) { Hatchet::Runner.new('spec/fixtures/ci_pip', buildpacks:) }
1010

1111
it 'installs both normal and test dependencies and uses cache on subsequent runs' do
1212
app.run_ci do |test_run|

spec/hatchet/django_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
end
3333

3434
context 'when Django is installed but manage.py does not exist' do
35-
let(:app) { Hatchet::Runner.new('spec/fixtures/requirements_django_latest') }
35+
let(:app) { Hatchet::Runner.new('spec/fixtures/django_latest') }
3636

3737
it 'skips collectstatic' do
3838
app.deploy do |app|
@@ -44,7 +44,7 @@
4444

4545
context 'when DISABLE_COLLECTSTATIC=1' do
4646
let(:app) do
47-
Hatchet::Runner.new('spec/fixtures/requirements_django_latest', config: { 'DISABLE_COLLECTSTATIC' => '1' })
47+
Hatchet::Runner.new('spec/fixtures/django_latest', config: { 'DISABLE_COLLECTSTATIC' => '1' })
4848
end
4949

5050
it 'skips collectstatic' do

spec/hatchet/package_manager_spec.rb

+92
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,96 @@
4646
end
4747
end
4848
end
49+
50+
# TODO: Deprecate/sunset the setup.py file fallback.
51+
context 'when there is only a setup.py' do
52+
let(:app) { Hatchet::Runner.new('spec/fixtures/setup_py_only') }
53+
54+
it 'installs packages from setup.py using pip' do
55+
app.deploy do |app|
56+
expect(clean_output(app.output)).to match(Regexp.new(<<~REGEX, Regexp::MULTILINE))
57+
remote: -----> Python app detected
58+
remote: -----> Using Python #{DEFAULT_PYTHON_MAJOR_VERSION} specified in .python-version
59+
remote: -----> Installing Python #{DEFAULT_PYTHON_FULL_VERSION}
60+
remote: -----> Installing pip #{PIP_VERSION}
61+
remote: -----> Installing dependencies using 'pip install --editable .'
62+
remote: Obtaining file:///tmp/build_.*
63+
remote: .+
64+
remote: Installing collected packages: six, test
65+
remote: Successfully installed six-.+ test-0.0.0
66+
REGEX
67+
end
68+
end
69+
end
70+
71+
# This case will be turned into an error in the future.
72+
context 'when there are multiple package manager files' do
73+
let(:app) { Hatchet::Runner.new('spec/fixtures/multiple_package_managers') }
74+
75+
it 'outputs a warning and builds with the first listed' do
76+
app.deploy do |app|
77+
expect(clean_output(app.output)).to match(Regexp.new(<<~REGEX))
78+
remote: -----> Python app detected
79+
remote:
80+
remote: ! Warning: Multiple Python package manager files were found.
81+
remote: !
82+
remote: ! Exactly one package manager file should be present in your app's
83+
remote: ! source code, however, several were found:
84+
remote: !
85+
remote: ! Pipfile.lock \\(Pipenv\\)
86+
remote: ! requirements.txt \\(pip\\)
87+
remote: ! poetry.lock \\(Poetry\\)
88+
remote: !
89+
remote: ! For now, we will build your app using the first package manager
90+
remote: ! listed above, however, in the future this warning will become
91+
remote: ! an error.
92+
remote: !
93+
remote: ! Decide which package manager you want to use with your app, and
94+
remote: ! then delete the file\\(s\\) and any config from the others.
95+
remote:
96+
remote:
97+
remote: ! Note: We recently added support for the package manager Poetry.
98+
remote: ! If you are using a third-party Poetry buildpack you must remove
99+
remote: ! it, otherwise the requirements.txt file it generates will cause
100+
remote: ! the warning above.
101+
remote:
102+
remote: -----> Using Python #{DEFAULT_PYTHON_MAJOR_VERSION} specified in .python-version
103+
remote: -----> Installing Python #{DEFAULT_PYTHON_FULL_VERSION}
104+
remote: -----> Installing pip #{PIP_VERSION}
105+
remote: -----> Installing Pipenv #{PIPENV_VERSION}
106+
remote: -----> Installing dependencies using 'pipenv install --deploy'
107+
remote: Installing dependencies from Pipfile.lock \\(.+\\)...
108+
REGEX
109+
end
110+
end
111+
end
112+
113+
context 'when the package manager has changed since the last build' do
114+
let(:app) { Hatchet::Runner.new('spec/fixtures/pip_basic') }
115+
116+
it 'clears the cache before installing with the new package manager' do
117+
app.deploy do |app|
118+
FileUtils.rm('requirements.txt')
119+
FileUtils.cp(FIXTURE_DIR.join('poetry_basic/pyproject.toml'), '.')
120+
FileUtils.cp(FIXTURE_DIR.join('poetry_basic/poetry.lock'), '.')
121+
app.commit!
122+
app.push!
123+
expect(clean_output(app.output)).to include(<<~OUTPUT)
124+
remote: -----> Python app detected
125+
remote: -----> Using Python #{DEFAULT_PYTHON_MAJOR_VERSION} specified in .python-version
126+
remote: -----> Discarding cache since:
127+
remote: - The package manager has changed from pip to poetry
128+
remote: -----> Installing Python #{DEFAULT_PYTHON_FULL_VERSION}
129+
remote: -----> Installing Poetry #{POETRY_VERSION}
130+
remote: -----> Installing dependencies using 'poetry sync --only main'
131+
remote: Installing dependencies from lock file
132+
remote:
133+
remote: Package operations: 1 install, 0 updates, 0 removals
134+
remote:
135+
remote: - Installing typing-extensions (4.12.2)
136+
remote: -----> Discovering process types
137+
OUTPUT
138+
end
139+
end
140+
end
49141
end

0 commit comments

Comments
 (0)