forked from pypi/warehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optimize the legacy JSON endpoints (pypi#11920)
* Add Release.is_prerelease to denormalize prerelease data * Migrate existing data and switch to using Release.is_prerelease * Switch legacy JSON endpoints to a better performing query * Move migration revision forward * Move classifier ordering into the database * Update trove-classifiers * Use the new methods in trove-classifiers * Fix tests * reformat * more test fixes * Run each migration in it's own transaction * Run 100000 updates per chunk * reformat * reformat
- Loading branch information
Showing
18 changed files
with
399 additions
and
153 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import pretend | ||
|
||
from warehouse import db | ||
from warehouse.classifiers.models import Classifier | ||
from warehouse.cli import classifiers | ||
|
||
|
||
def test_classifiers_update(db_request, monkeypatch, cli): | ||
engine = pretend.stub() | ||
config = pretend.stub(registry={"sqlalchemy.engine": engine}) | ||
session_cls = pretend.call_recorder(lambda bind: db_request.db) | ||
monkeypatch.setattr(db, "Session", session_cls) | ||
|
||
cs = [ | ||
c.classifier | ||
for c in db_request.db.query(Classifier).order_by(Classifier.ordering).all() | ||
] | ||
|
||
monkeypatch.setattr(classifiers, "sorted_classifiers", ["C :: D", "A :: B"] + cs) | ||
|
||
db_request.db.add(Classifier(classifier="A :: B", ordering=0)) | ||
assert db_request.db.query(Classifier).filter_by(classifier="C :: D").count() == 0 | ||
cli.invoke(classifiers.sync, obj=config) | ||
|
||
c = db_request.db.query(Classifier).filter_by(classifier="C :: D").one() | ||
|
||
assert c.classifier == "C :: D" | ||
assert c.ordering == 0 | ||
|
||
c = db_request.db.query(Classifier).filter_by(classifier="A :: B").one() | ||
|
||
assert c.classifier == "A :: B" | ||
assert c.ordering == 1 | ||
|
||
|
||
def test_classifiers_no_update(db_request, monkeypatch, cli): | ||
engine = pretend.stub() | ||
config = pretend.stub(registry={"sqlalchemy.engine": engine}) | ||
session_cls = pretend.call_recorder(lambda bind: db_request.db) | ||
monkeypatch.setattr(db, "Session", session_cls) | ||
|
||
original = db_request.db.query(Classifier).order_by(Classifier.ordering).all() | ||
|
||
monkeypatch.setattr( | ||
classifiers, "sorted_classifiers", [c.classifier for c in original] | ||
) | ||
|
||
cli.invoke(classifiers.sync, obj=config) | ||
|
||
after = db_request.db.query(Classifier).order_by(Classifier.ordering).all() | ||
|
||
assert original == after |
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
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
Oops, something went wrong.