-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add basic unit test for files transform_url function * Add test case with mutliple transform operations * Format unit test code for file transformations * Move url code to new transform_url function * Fix wrong seperator for gravity coordinate values * Clean up doc strings and comments for the file transform url
- Loading branch information
Showing
2 changed files
with
82 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# | ||
# Licensed to Xatabase, Inc under one or more contributor | ||
# license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright | ||
# ownership. Xatabase, Inc licenses this file to you 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 unittest | ||
|
||
from xata.client import XataClient | ||
|
||
|
||
class TestFileTransformations(unittest.TestCase): | ||
def test_single_transform_url(self): | ||
client = XataClient(api_key="api_key", workspace_id="ws_id") | ||
|
||
url = client.files().transform_url( | ||
"https://us-east-1.storage.xata.sh/4u1fh2o6p10blbutjnphcste94", | ||
{ | ||
"height": 100, | ||
} | ||
) | ||
|
||
expected = "https://us-east-1.storage.xata.sh/transform/height=100/4u1fh2o6p10blbutjnphcste94" | ||
assert url == expected | ||
|
||
def test_multiple_transform_url(self): | ||
client = XataClient(api_key="api_key", workspace_id="ws_id") | ||
|
||
url = client.files().transform_url( | ||
"https://us-east-1.storage.xata.sh/4u1fh2o6p10blbutjnphcste94", | ||
{ | ||
"width": 100, | ||
"height": 100, | ||
"fit": "cover", | ||
"gravity": { | ||
"x": 0, | ||
"y": 1 | ||
} | ||
} | ||
) | ||
|
||
excepted = "https://us-east-1.storage.xata.sh/transform/width=100,height=100,fit=cover,gravity=0x1/4u1fh2o6p10blbutjnphcste94" | ||
|
||
assert url == excepted |
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