-
Notifications
You must be signed in to change notification settings - Fork 1
Lal/coal csv file names for prod 15778 #68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
lalepee
wants to merge
4
commits into
main
Choose a base branch
from
LAL/coal-csv-file-names-for-PROD-15778
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,68 @@ | ||
| # Copyright (C) - 2022 - 2025 - Cosmo Tech | ||
| # This document and all information contained herein is the exclusive property - | ||
| # including all intellectual property rights pertaining thereto - of Cosmo Tech. | ||
| # Any use, reproduction, translation, broadcasting, transmission, distribution, | ||
| # etc., to any person is prohibited unless it has been previously and | ||
| # specifically authorized by written means by Cosmo Tech. | ||
|
|
||
| import pyarrow as pa | ||
| import pytest | ||
|
|
||
| from cosmotech.coal.store.store import Store | ||
|
|
||
|
|
||
| @pytest.fixture(scope="function") | ||
| def store(): | ||
| store = Store(reset=True) | ||
| yield store | ||
| store.reset() | ||
|
|
||
|
|
||
| class TestStore: | ||
| """Tests for the store class.""" | ||
|
|
||
| def test_get_table(self, store): | ||
| """Test get table with table name starting with numbers""" | ||
|
|
||
| # Arrange | ||
| table_name = "normal_name" | ||
| table = pa.Table.from_arrays([pa.array([1, 2, 3]), pa.array(["a", "b", "c"])], names=["id", "name"]) | ||
| store.add_table(table_name, table) | ||
|
|
||
| # Act | ||
| result = store.get_table(table_name) | ||
|
|
||
| # Assert | ||
| assert result | ||
|
|
||
| def test_get_table_with_number_name(self, store): | ||
| """Test get table with table name starting with numbers""" | ||
|
|
||
| # Arrange | ||
| table_name = "10mb" | ||
| table = pa.Table.from_arrays([pa.array([1, 2, 3]), pa.array(["a", "b", "c"])], names=["id", "name"]) | ||
| store.add_table(table_name, table) | ||
|
|
||
| # Act | ||
| result = store.get_table(table_name) | ||
|
|
||
| # Assert | ||
| assert result | ||
|
|
||
| def test_add_get_table_with_upper_and_lower_case(self, store): | ||
| """Test add table and get table behavior with uppper and lower cases""" | ||
|
|
||
| # Arrange | ||
|
|
||
| table = pa.Table.from_arrays([pa.array([1, 2, 3]), pa.array(["a", "b", "c"])], names=["id", "name"]) | ||
| store.add_table("10mb", table) | ||
| table = pa.Table.from_arrays([pa.array([4, 5, 6]), pa.array(["A", "B", "C"])], names=["id", "name"]) | ||
| store.add_table("10MB", table) | ||
|
|
||
| # Act | ||
| UPPER_result = store.get_table("10MB") | ||
| upper_result = store.get_table("10mb") | ||
|
|
||
| assert upper_result | ||
| assert UPPER_result | ||
| assert upper_result == UPPER_result | ||
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could add a test with case sensitive names, "UPPER" and "upper" should be either the same or different tables
We need to chose the standard working here, according to sql they should be the same, but we could have user having a "File.csv" and "file.csv" living next to each other.
Current implementation would have "File" and "file" being 2 different tables in the get_table, but we need to make sure that the add_table act identical then.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Table FILE and file are the same in the sqlite.