mage-ai 0.9.74__py3-none-any.whl → 0.9.79__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mage_ai/ai/llm_pipeline_wizard.py +6 -4
- mage_ai/ai/openai_client.py +7 -5
- mage_ai/api/policies/PipelineSchedulePolicy.py +1 -0
- mage_ai/api/presenters/PipelineSchedulePresenter.py +11 -2
- mage_ai/api/resources/GitFileResource.py +8 -0
- mage_ai/api/resources/PipelineScheduleResource.py +20 -14
- mage_ai/api/resources/PipelineTriggerResource.py +3 -1
- mage_ai/api/resources/SessionResource.py +2 -2
- mage_ai/api/resources/SyncResource.py +1 -1
- mage_ai/api/resources/UserResource.py +1 -1
- mage_ai/cli/main.py +8 -1
- mage_ai/data_cleaner/analysis/charts.py +1 -1
- mage_ai/data_cleaner/cleaning_rules/reformat_values.py +1 -1
- mage_ai/data_integrations/destinations/constants.py +3 -0
- mage_ai/data_integrations/sources/constants.py +2 -0
- mage_ai/data_preparation/executors/block_executor.py +8 -3
- mage_ai/data_preparation/executors/pipeline_executor.py +35 -19
- mage_ai/data_preparation/git/utils.py +2 -2
- mage_ai/data_preparation/logging/logger_manager.py +31 -2
- mage_ai/data_preparation/models/block/__init__.py +33 -27
- mage_ai/data_preparation/models/block/dbt/dbt_adapter.py +20 -8
- mage_ai/data_preparation/models/block/dynamic/constants.py +0 -1
- mage_ai/data_preparation/models/block/dynamic/counter.py +1 -3
- mage_ai/data_preparation/models/block/outputs.py +7 -1
- mage_ai/data_preparation/models/block/r/__init__.py +16 -5
- mage_ai/data_preparation/models/block/sql/__init__.py +2 -0
- mage_ai/data_preparation/models/block/sql/mssql.py +8 -0
- mage_ai/data_preparation/models/block/sql/utils/shared.py +6 -2
- mage_ai/data_preparation/models/constants.py +4 -1
- mage_ai/data_preparation/models/pipeline.py +11 -2
- mage_ai/data_preparation/models/project/__init__.py +3 -1
- mage_ai/data_preparation/models/triggers/__init__.py +1 -1
- mage_ai/data_preparation/storage/local_storage.py +4 -1
- mage_ai/data_preparation/templates/constants.py +7 -0
- mage_ai/data_preparation/templates/data_exporters/streaming/elasticsearch.yaml +3 -0
- mage_ai/data_preparation/templates/data_loaders/airtable.py +28 -0
- mage_ai/data_preparation/templates/data_loaders/streaming/nats.yaml +6 -3
- mage_ai/data_preparation/templates/repo/io_config.yaml +2 -0
- mage_ai/io/airtable.py +104 -0
- mage_ai/io/base.py +30 -1
- mage_ai/io/bigquery.py +36 -0
- mage_ai/io/config.py +6 -0
- mage_ai/io/mssql.py +21 -9
- mage_ai/io/mysql.py +6 -1
- mage_ai/io/oracledb.py +2 -4
- mage_ai/io/postgres.py +41 -19
- mage_ai/io/qdrant.py +1 -1
- mage_ai/io/redshift.py +13 -0
- mage_ai/io/sql.py +1 -0
- mage_ai/io/utils.py +18 -0
- mage_ai/orchestration/db/__init__.py +23 -3
- mage_ai/orchestration/db/migrations/versions/39d36f1dab73_create_genericjob.py +47 -0
- mage_ai/orchestration/db/models/oauth.py +2 -1
- mage_ai/orchestration/db/models/schedules.py +108 -6
- mage_ai/orchestration/db/models/schedules_project_platform.py +1 -1
- mage_ai/orchestration/db/models/secrets.py +11 -1
- mage_ai/orchestration/job_manager.py +19 -0
- mage_ai/orchestration/metrics/pipeline_run.py +1 -1
- mage_ai/orchestration/notification/sender.py +2 -2
- mage_ai/orchestration/pipeline_scheduler_original.py +150 -6
- mage_ai/orchestration/pipeline_scheduler_project_platform.py +4 -5
- mage_ai/orchestration/queue/config.py +11 -1
- mage_ai/orchestration/queue/process_queue.py +4 -0
- mage_ai/orchestration/utils/distributed_lock.py +8 -1
- mage_ai/orchestration/utils/resources.py +56 -2
- mage_ai/sample_datasets/salary_survey.csv +52 -52
- mage_ai/server/api/base.py +41 -0
- mage_ai/server/api/constants.py +1 -0
- mage_ai/server/api/triggers.py +9 -0
- mage_ai/server/constants.py +1 -1
- mage_ai/server/frontend_dist/404.html +3 -3
- mage_ai/server/frontend_dist/_next/static/TUo4RceCdMufBTBTq8CAq/_buildManifest.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/{1187-839336d276186105.js → 1187-4560c3895e1d7099.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/{1598-0adca9dce3ba4c60.js → 1598-cbf3f5a6078fc3f5.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/2717-638a944d24d5abde.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/3548-36f746b1824004f2.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/{3763-39a5174f6a3924db.js → 3763-aabe2703076636b0.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/3782-3e2acb5ed45b582b.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/449-5e2253c6aba42557.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/5627-d5e559859dd0e1e0.js → frontend_dist/_next/static/chunks/5627-10e76bafa5a26f5f.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/{5699-e49718dfc9eb2854.js → 5699-e99379e332bd0b41.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/{7966-163da2621b8c987c.js → 7966-a5a7db345ce81263.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-b697b35dfc4e6e26.js +2 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/compute-ed67fa8e81662e8b.js → frontend_dist/_next/static/chunks/pages/compute-9e2dea78024e3bb4.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/files-e0ecd7ced09a63b2.js → frontend_dist/_next/static/chunks/pages/files-e08c7fe76f968f9c.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/global-data-products/{[...slug]-c7a729477ecda50e.js → [...slug]-30c3807057a4e65b.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{global-data-products-fd6ae6a358a60a0c.js → global-data-products-8dcb3b31af9e0e39.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/global-hooks/[...slug]-8e50243797a7fe59.js → frontend_dist/_next/static/chunks/pages/global-hooks/[...slug]-85a64b64d27214b6.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{global-hooks-d0c003446332dc0d.js → global-hooks-4ff959d51b8a9502.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{files-a69ed8e9f814490c.js → files-d08a460641d0efaa.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{overview-1aad7093c6d39257.js → overview-aae747f487e08d51.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{pipeline-runs-528d30e0d13b0cc7.js → pipeline-runs-09a842d64a6ada62.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{settings-fb9201d9cf63031d.js → settings-2e98e57d9376a458.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users/{[user]-000f5a980a07da39.js → [user]-7be6e41ad66089bb.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/manage/users/new-e4e613f6e817a733.js → frontend_dist/_next/static/chunks/pages/manage/users/new-4c088833063bfa07.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-5db54821a3059c69.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/manage-34d718b8a4066c23.js → frontend_dist/_next/static/chunks/pages/manage-868fcd8cbeb265f0.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{oauth-3bfd1b8d7f036726.js → oauth-6ceceb62191dfe8a.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/overview-f65416f6dbe30ad3.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{pipeline-runs-5f8c100e648efa8a.js → pipeline-runs-2d0136b51b57de93.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills/{[...slug]-688c652f3296bb9c.js → [...slug]-1ad5238742e25b4c.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills-bd11e87d026bfbf9.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{dashboard-1236e36d39b1637d.js → dashboard-0f4f47f721b0723f.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-5ae8efe9e0530212.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-fe91dfb0091f6bc6.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-0d68d4bf6290fefb.js → frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-cf794b2d22a80f31.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-9254358d58f07714.js → frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-a964caef91bed9e1.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{monitors-821001e690caebe2.js → monitors-80bebb4401eefe25.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-2eae7cb017027682.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs-2d4b2a0800a66b33.js → frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-776b2e5b0b6ceba8.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-03d9bca3bc5e6088.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-707ed8ca942ca802.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers/{[...slug]-259143ed3cf59e31.js → [...slug]-8429f17d4146e1ec.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers-193045d9836d8d80.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-d25d07db166cbb04.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/platform/global-hooks/{[...slug]-5eeec927e4202b63.js → [...slug]-6834ae87bd668cb2.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/platform/global-hooks-fbe9ad995d46d837.js → frontend_dist/_next/static/chunks/pages/platform/global-hooks-b3f7309a23e592b2.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/account/{profile-fc659962d4015cb3.js → profile-f8b7374385e1f1bf.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/platform/preferences-8de68502a9afa299.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/settings-a4f88c334414402b.js → frontend_dist/_next/static/chunks/pages/settings/platform/settings-50fb6a34f3913f1f.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/permissions/{[...slug]-4deb9579ef99a3c6.js → [...slug]-2e5c098c21ea32b7.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{permissions-e0cda2f2bfce8d61.js → permissions-54e4b15b9585bfc4.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-040f83d75d0f6537.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/roles/{[...slug]-910257d16c604ebd.js → [...slug]-95088f43034e3c95.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{roles-4f7a0756806cee34.js → roles-e9149e1fcf218f42.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{sync-data-208d6f955204d704.js → sync-data-75b67ae4a00818ef.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users/{[...slug]-c89dc67e5a1706a8.js → [...slug]-557dda05ca6c6124.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-fa61dc6c1370e6a5.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{sign-in-054b33312d3193c3.js → sign-in-593c40985d63fcf7.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/templates/{[...slug]-b6ed6a5d818bfd20.js → [...slug]-252c4b6b818345d5.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/{templates-852357bc983af2ea.js → templates-ca528bc607753ab8.js} +1 -1
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/terminal-1f9c56d671bbc67d.js → frontend_dist/_next/static/chunks/pages/terminal-287362c1defcc96b.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/test-2f83af8c9f1378fe.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/triggers-d9de73fb799efed8.js +1 -0
- mage_ai/server/{frontend_dist_base_path_template/_next/static/chunks/pages/version-control-ae3469b992a341d6.js → frontend_dist/_next/static/chunks/pages/version-control-573f0225d7a703ed.js} +1 -1
- mage_ai/server/frontend_dist/block-layout.html +3 -3
- mage_ai/server/frontend_dist/compute.html +6 -6
- mage_ai/server/frontend_dist/files.html +6 -6
- mage_ai/server/frontend_dist/global-data-products/[...slug].html +6 -6
- mage_ai/server/frontend_dist/global-data-products.html +6 -6
- mage_ai/server/frontend_dist/global-hooks/[...slug].html +6 -6
- mage_ai/server/frontend_dist/global-hooks.html +6 -6
- mage_ai/server/frontend_dist/index.html +3 -3
- mage_ai/server/frontend_dist/manage/files.html +6 -6
- mage_ai/server/frontend_dist/manage/overview.html +6 -6
- mage_ai/server/frontend_dist/manage/pipeline-runs.html +6 -6
- mage_ai/server/frontend_dist/manage/settings.html +6 -6
- mage_ai/server/frontend_dist/manage/users/[user].html +6 -6
- mage_ai/server/frontend_dist/manage/users/new.html +6 -6
- mage_ai/server/frontend_dist/manage/users.html +6 -6
- mage_ai/server/frontend_dist/manage.html +6 -6
- mage_ai/server/frontend_dist/oauth.html +5 -5
- mage_ai/server/frontend_dist/overview.html +6 -6
- mage_ai/server/frontend_dist/pipeline-runs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/dashboard.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html +3 -3
- mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html +6 -6
- mage_ai/server/frontend_dist/pipelines/[pipeline].html +3 -3
- mage_ai/server/frontend_dist/pipelines.html +6 -6
- mage_ai/server/frontend_dist/platform/global-hooks/[...slug].html +6 -6
- mage_ai/server/frontend_dist/platform/global-hooks.html +6 -6
- mage_ai/server/frontend_dist/settings/account/profile.html +6 -6
- mage_ai/server/frontend_dist/settings/platform/preferences.html +6 -6
- mage_ai/server/frontend_dist/settings/platform/settings.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/permissions/[...slug].html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/permissions.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/preferences.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/roles/[...slug].html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/roles.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/sync-data.html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/users/[...slug].html +6 -6
- mage_ai/server/frontend_dist/settings/workspace/users.html +6 -6
- mage_ai/server/frontend_dist/settings.html +3 -3
- mage_ai/server/frontend_dist/sign-in.html +7 -7
- mage_ai/server/frontend_dist/templates/[...slug].html +6 -6
- mage_ai/server/frontend_dist/templates.html +6 -6
- mage_ai/server/frontend_dist/terminal.html +6 -6
- mage_ai/server/frontend_dist/test.html +3 -3
- mage_ai/server/frontend_dist/triggers.html +6 -6
- mage_ai/server/frontend_dist/v2/canvas.html +2 -2
- mage_ai/server/frontend_dist/v2.html +2 -2
- mage_ai/server/frontend_dist/version-control.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/404.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/_next/static/2QL-FT4lFR0a9bDZ7lNd9/_buildManifest.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{1187-839336d276186105.js → 1187-4560c3895e1d7099.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{1598-0adca9dce3ba4c60.js → 1598-cbf3f5a6078fc3f5.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/2717-638a944d24d5abde.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3548-36f746b1824004f2.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{3763-39a5174f6a3924db.js → 3763-aabe2703076636b0.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3782-3e2acb5ed45b582b.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/449-5e2253c6aba42557.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/5627-d5e559859dd0e1e0.js → frontend_dist_base_path_template/_next/static/chunks/5627-10e76bafa5a26f5f.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{5699-e49718dfc9eb2854.js → 5699-e99379e332bd0b41.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{7966-163da2621b8c987c.js → 7966-a5a7db345ce81263.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-f205accb03b9ff43.js +2 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/compute-ed67fa8e81662e8b.js → frontend_dist_base_path_template/_next/static/chunks/pages/compute-9e2dea78024e3bb4.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/files-e0ecd7ced09a63b2.js → frontend_dist_base_path_template/_next/static/chunks/pages/files-e08c7fe76f968f9c.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/global-data-products/{[...slug]-c7a729477ecda50e.js → [...slug]-30c3807057a4e65b.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{global-data-products-fd6ae6a358a60a0c.js → global-data-products-8dcb3b31af9e0e39.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/global-hooks/[...slug]-8e50243797a7fe59.js → frontend_dist_base_path_template/_next/static/chunks/pages/global-hooks/[...slug]-85a64b64d27214b6.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{global-hooks-d0c003446332dc0d.js → global-hooks-4ff959d51b8a9502.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/{files-a69ed8e9f814490c.js → files-d08a460641d0efaa.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/{overview-1aad7093c6d39257.js → overview-aae747f487e08d51.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/{pipeline-runs-528d30e0d13b0cc7.js → pipeline-runs-09a842d64a6ada62.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/{settings-fb9201d9cf63031d.js → settings-2e98e57d9376a458.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users/{[user]-000f5a980a07da39.js → [user]-7be6e41ad66089bb.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/manage/users/new-e4e613f6e817a733.js → frontend_dist_base_path_template/_next/static/chunks/pages/manage/users/new-4c088833063bfa07.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users-5db54821a3059c69.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/manage-34d718b8a4066c23.js → frontend_dist_base_path_template/_next/static/chunks/pages/manage-868fcd8cbeb265f0.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{oauth-3bfd1b8d7f036726.js → oauth-6ceceb62191dfe8a.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/overview-f65416f6dbe30ad3.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{pipeline-runs-5f8c100e648efa8a.js → pipeline-runs-2d0136b51b57de93.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/backfills/{[...slug]-688c652f3296bb9c.js → [...slug]-1ad5238742e25b4c.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/backfills-bd11e87d026bfbf9.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/{dashboard-1236e36d39b1637d.js → dashboard-0f4f47f721b0723f.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/edit-5ae8efe9e0530212.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/logs-fe91dfb0091f6bc6.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-0d68d4bf6290fefb.js → frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-cf794b2d22a80f31.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-9254358d58f07714.js → frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-a964caef91bed9e1.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/{monitors-821001e690caebe2.js → monitors-80bebb4401eefe25.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-2eae7cb017027682.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-2d4b2a0800a66b33.js → frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs-776b2e5b0b6ceba8.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-03d9bca3bc5e6088.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/syncs-707ed8ca942ca802.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/triggers/{[...slug]-259143ed3cf59e31.js → [...slug]-8429f17d4146e1ec.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/triggers-193045d9836d8d80.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines-d25d07db166cbb04.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/platform/global-hooks/{[...slug]-5eeec927e4202b63.js → [...slug]-6834ae87bd668cb2.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/platform/global-hooks-fbe9ad995d46d837.js → frontend_dist_base_path_template/_next/static/chunks/pages/platform/global-hooks-b3f7309a23e592b2.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/account/{profile-fc659962d4015cb3.js → profile-f8b7374385e1f1bf.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/preferences-8de68502a9afa299.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/settings/platform/settings-a4f88c334414402b.js → frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/settings-50fb6a34f3913f1f.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/permissions/{[...slug]-4deb9579ef99a3c6.js → [...slug]-2e5c098c21ea32b7.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/{permissions-e0cda2f2bfce8d61.js → permissions-54e4b15b9585bfc4.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/preferences-040f83d75d0f6537.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/roles/{[...slug]-910257d16c604ebd.js → [...slug]-95088f43034e3c95.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/{roles-4f7a0756806cee34.js → roles-e9149e1fcf218f42.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/{sync-data-208d6f955204d704.js → sync-data-75b67ae4a00818ef.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users/{[...slug]-c89dc67e5a1706a8.js → [...slug]-557dda05ca6c6124.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users-fa61dc6c1370e6a5.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{sign-in-054b33312d3193c3.js → sign-in-593c40985d63fcf7.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/templates/{[...slug]-b6ed6a5d818bfd20.js → [...slug]-252c4b6b818345d5.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{templates-852357bc983af2ea.js → templates-ca528bc607753ab8.js} +1 -1
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/terminal-1f9c56d671bbc67d.js → frontend_dist_base_path_template/_next/static/chunks/pages/terminal-287362c1defcc96b.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/test-2f83af8c9f1378fe.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/triggers-d9de73fb799efed8.js +1 -0
- mage_ai/server/{frontend_dist/_next/static/chunks/pages/version-control-ae3469b992a341d6.js → frontend_dist_base_path_template/_next/static/chunks/pages/version-control-573f0225d7a703ed.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{webpack-12ad70eb5c31aa92.js → webpack-5f4be622608d9267.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/block-layout.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/compute.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/files.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/global-data-products/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/global-data-products.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/global-hooks/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/global-hooks.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/index.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/manage/files.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/overview.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/pipeline-runs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/settings.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/users/[user].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/users/new.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage/users.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/manage.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/oauth.html +5 -5
- mage_ai/server/frontend_dist_base_path_template/overview.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipeline-runs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/dashboard.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/edit.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/logs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runtime.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs/[run].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/settings.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/syncs.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline].html +3 -3
- mage_ai/server/frontend_dist_base_path_template/pipelines.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/platform/global-hooks/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/platform/global-hooks.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/account/profile.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/platform/preferences.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/platform/settings.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/preferences.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/sync-data.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/users/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/users.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/settings.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/sign-in.html +7 -7
- mage_ai/server/frontend_dist_base_path_template/templates/[...slug].html +6 -6
- mage_ai/server/frontend_dist_base_path_template/templates.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/terminal.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/test.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/triggers.html +6 -6
- mage_ai/server/frontend_dist_base_path_template/v2/canvas.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/v2.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/version-control.html +6 -6
- mage_ai/server/scheduler_manager.py +2 -0
- mage_ai/server/server.py +13 -0
- mage_ai/server/terminal_server.py +3 -0
- mage_ai/server/utils/output_display.py +5 -3
- mage_ai/services/aws/events/events.py +2 -2
- mage_ai/services/gcp/cloud_run/cloud_run.py +1 -1
- mage_ai/services/teams/config.py +13 -2
- mage_ai/services/teams/teams.py +13 -11
- mage_ai/settings/server.py +12 -1
- mage_ai/shared/constants.py +3 -1
- mage_ai/shared/croniter.py +1398 -0
- mage_ai/shared/enum.py +2 -5
- mage_ai/shared/environments.py +27 -3
- mage_ai/streaming/sinks/elasticsearch.py +15 -5
- mage_ai/streaming/sinks/kafka.py +21 -3
- mage_ai/streaming/sources/kafka.py +64 -7
- mage_ai/streaming/sources/kafka_oauth.py +182 -0
- mage_ai/tests/api/endpoints/test_blocks.py +1 -101
- mage_ai/tests/api/endpoints/test_configuration_options.py +1 -48
- mage_ai/tests/api/endpoints/test_configuration_options_project_platform.py +68 -0
- mage_ai/tests/api/endpoints/test_custom_designs.py +1 -106
- mage_ai/tests/api/endpoints/test_custom_designs_project_platform.py +132 -0
- mage_ai/tests/api/endpoints/test_dbt_blocks.py +111 -0
- mage_ai/tests/api/endpoints/test_file_contents.py +0 -48
- mage_ai/tests/api/endpoints/test_file_contents_with_project_platform.py +66 -0
- mage_ai/tests/api/endpoints/test_pipelines.py +0 -134
- mage_ai/tests/api/endpoints/test_pipelines_with_project_platform.py +143 -0
- mage_ai/tests/data_preparation/executors/test_block_executor.py +3 -3
- mage_ai/tests/data_preparation/logging/test_logger_manager.py +24 -5
- mage_ai/tests/data_preparation/models/block/dynamic/test_counter.py +1 -3
- mage_ai/tests/data_preparation/models/block/hook/test_hook_block.py +3 -3
- mage_ai/tests/data_preparation/models/test_block.py +7 -0
- mage_ai/tests/data_preparation/models/test_pipeline.py +55 -0
- mage_ai/tests/data_preparation/models/test_variable.py +2 -0
- mage_ai/tests/data_preparation/test_repo_manager.py +0 -63
- mage_ai/tests/data_preparation/test_repo_manager_project_platform.py +67 -0
- mage_ai/tests/data_preparation/test_variable_manager.py +0 -51
- mage_ai/tests/data_preparation/test_variable_manager_project_platform.py +41 -0
- mage_ai/tests/io/create_table/test_postgresql.py +28 -0
- mage_ai/tests/orchestration/db/models/test_schedules.py +1 -1
- mage_ai/tests/orchestration/notification/test_config.py +3 -3
- mage_ai/tests/orchestration/notification/test_sender.py +5 -1
- mage_ai/tests/orchestration/utils/__init__.py +0 -0
- mage_ai/tests/orchestration/utils/test_resources.py +235 -0
- mage_ai/tests/shared/test_croniter.py +2541 -0
- mage_ai/tests/streaming/sinks/test_kafka.py +130 -0
- mage_ai/tests/streaming/sources/test_kafka.py +125 -3
- mage_ai/tests/streaming/sources/test_kafka_oauth.py +208 -0
- mage_ai/tests/streaming/sources/test_kafka_raw_value.py +105 -0
- mage_ai/usage_statistics/logger.py +99 -15
- mage_ai-0.9.79.dist-info/METADATA +358 -0
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info}/RECORD +377 -359
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info}/WHEEL +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/1557-1ad0c64c2d08e569.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/2717-d65056b6b5e124eb.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/3548-b2c5edfb710886a6.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/3782-4b3091e550f809a2.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-5bdff745074fb350.js +0 -2
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-a5e9d77ed5b50205.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/overview-69af3253ad0d0d89.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills-fe112809feb25b05.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-e9ca358209cdf93d.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-a29f1615d2e7d330.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-6d382ae5bad9745c.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-cd49372ae1702963.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-135be8974f7f5f2b.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers-3af13e89adff4d6c.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-b578b075a8d857e3.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/platform/preferences-058d283ee178c038.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-7b02bb70462144cb.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-5212c01a9dc558da.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/test-86b12cc12d4a625f.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/triggers-2481c40b18d5b6d4.js +0 -1
- mage_ai/server/frontend_dist/_next/static/pLWT6Sqd09xYpufCVIqnz/_buildManifest.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/JQewSAObpbhO0wrdAM6Ng/_buildManifest.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/1557-1ad0c64c2d08e569.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/2717-d65056b6b5e124eb.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3548-b2c5edfb710886a6.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/3782-4b3091e550f809a2.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-90de19bc03f1484b.js +0 -2
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users-a5e9d77ed5b50205.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/overview-69af3253ad0d0d89.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/backfills-fe112809feb25b05.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/edit-e9ca358209cdf93d.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/logs-a29f1615d2e7d330.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-6d382ae5bad9745c.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-cd49372ae1702963.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/syncs-135be8974f7f5f2b.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/triggers-3af13e89adff4d6c.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines-b578b075a8d857e3.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/platform/preferences-058d283ee178c038.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/preferences-7b02bb70462144cb.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users-5212c01a9dc558da.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/test-86b12cc12d4a625f.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/triggers-2481c40b18d5b6d4.js +0 -1
- mage_ai-0.9.74.dist-info/METADATA +0 -544
- /mage_ai/server/frontend_dist/_next/static/{pLWT6Sqd09xYpufCVIqnz → TUo4RceCdMufBTBTq8CAq}/_ssgManifest.js +0 -0
- /mage_ai/server/frontend_dist/_next/static/chunks/pages/{_app-5bdff745074fb350.js.LICENSE.txt → _app-b697b35dfc4e6e26.js.LICENSE.txt} +0 -0
- /mage_ai/server/frontend_dist_base_path_template/_next/static/{JQewSAObpbhO0wrdAM6Ng → 2QL-FT4lFR0a9bDZ7lNd9}/_ssgManifest.js +0 -0
- /mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{_app-90de19bc03f1484b.js.LICENSE.txt → _app-f205accb03b9ff43.js.LICENSE.txt} +0 -0
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info}/entry_points.txt +0 -0
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info/licenses}/LICENSE +0 -0
- {mage_ai-0.9.74.dist-info → mage_ai-0.9.79.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import os
|
|
3
|
+
from unittest.mock import patch
|
|
4
|
+
|
|
5
|
+
from mage_ai.authentication.permissions.constants import EntityName
|
|
6
|
+
from mage_ai.settings.models.configuration_option import ConfigurationType, OptionType
|
|
7
|
+
from mage_ai.tests.api.endpoints.mixins import (
|
|
8
|
+
BaseAPIEndpointTest,
|
|
9
|
+
build_list_endpoint_tests,
|
|
10
|
+
)
|
|
11
|
+
from mage_ai.tests.shared.mixins import DBTMixin, ProjectPlatformMixin
|
|
12
|
+
|
|
13
|
+
CURRENT_FILE_PATH = os.path.dirname(os.path.realpath(__file__))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def __build_query(test_case):
|
|
17
|
+
return dict(
|
|
18
|
+
configuration_type=[ConfigurationType.DBT],
|
|
19
|
+
option_type=[OptionType.PROJECTS],
|
|
20
|
+
resource_type=[EntityName.Block],
|
|
21
|
+
resource_uuid=[test_case.blocks[0].uuid],
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
@patch('mage_ai.settings.platform.utils.project_platform_activated', lambda: True)
|
|
26
|
+
@patch('mage_ai.settings.repo.project_platform_activated', lambda: True)
|
|
27
|
+
class ConfigurationOptionProjectPlatformAPIEndpointTest(
|
|
28
|
+
DBTMixin,
|
|
29
|
+
ProjectPlatformMixin,
|
|
30
|
+
BaseAPIEndpointTest,
|
|
31
|
+
):
|
|
32
|
+
pass
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
def __assert_after_list2(self, result, **kwargs):
|
|
36
|
+
with open(os.path.join(
|
|
37
|
+
CURRENT_FILE_PATH,
|
|
38
|
+
'mocks',
|
|
39
|
+
'mock_dbt_configuration_options_project_platform.json',
|
|
40
|
+
)) as f:
|
|
41
|
+
self.assertEqual(
|
|
42
|
+
result,
|
|
43
|
+
json.loads(f.read()),
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
build_list_endpoint_tests(
|
|
48
|
+
ConfigurationOptionProjectPlatformAPIEndpointTest,
|
|
49
|
+
list_count=1,
|
|
50
|
+
get_resource_parent_id=lambda test_case: test_case.pipeline.uuid,
|
|
51
|
+
resource='configuration_option',
|
|
52
|
+
resource_parent='pipeline',
|
|
53
|
+
result_keys_to_compare=[
|
|
54
|
+
'configuration_type',
|
|
55
|
+
'metadata',
|
|
56
|
+
'option',
|
|
57
|
+
'option_type',
|
|
58
|
+
'resource_type',
|
|
59
|
+
'uuid',
|
|
60
|
+
],
|
|
61
|
+
assert_after=__assert_after_list2,
|
|
62
|
+
build_query=__build_query,
|
|
63
|
+
patch_function_settings=[
|
|
64
|
+
('mage_ai.settings.models.configuration_option.project_platform_activated', lambda: True),
|
|
65
|
+
('mage_ai.settings.platform.utils.project_platform_activated', lambda: True),
|
|
66
|
+
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
67
|
+
],
|
|
68
|
+
)
|
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
import json
|
|
2
2
|
import os
|
|
3
|
-
from unittest.mock import patch
|
|
4
3
|
|
|
5
4
|
from mage_ai.data_preparation.models.project.constants import FeatureUUID
|
|
6
|
-
from mage_ai.settings.utils import base_repo_path
|
|
7
5
|
from mage_ai.tests.api.endpoints.mixins import (
|
|
8
6
|
BaseAPIEndpointTest,
|
|
9
7
|
build_detail_endpoint_tests,
|
|
10
8
|
build_list_endpoint_tests,
|
|
11
9
|
)
|
|
12
|
-
from mage_ai.tests.shared.mixins import CustomDesignMixin
|
|
10
|
+
from mage_ai.tests.shared.mixins import CustomDesignMixin
|
|
13
11
|
|
|
14
12
|
CURRENT_FILE_PATH = os.path.dirname(os.path.realpath(__file__))
|
|
15
13
|
|
|
@@ -102,106 +100,3 @@ build_detail_endpoint_tests(
|
|
|
102
100
|
),
|
|
103
101
|
],
|
|
104
102
|
)
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
@patch('mage_ai.presenters.design.models.project_platform_activated', lambda: True)
|
|
108
|
-
@patch('mage_ai.settings.platform.utils.project_platform_activated', lambda: True)
|
|
109
|
-
@patch('mage_ai.settings.repo.project_platform_activated', lambda: True)
|
|
110
|
-
class CustomDesignProjectPlatformAPIEndpointTest(
|
|
111
|
-
CustomDesignMixin,
|
|
112
|
-
ProjectPlatformMixin,
|
|
113
|
-
BaseAPIEndpointTest,
|
|
114
|
-
):
|
|
115
|
-
pass
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
def __assert_after_list2(self, result, **kwargs):
|
|
119
|
-
with open(os.path.join(CURRENT_FILE_PATH, 'mocks', 'mock_design_project_platform.json')) as f:
|
|
120
|
-
arr = json.loads(f.read())
|
|
121
|
-
for item in arr:
|
|
122
|
-
item['project']['full_path'] = os.path.join(
|
|
123
|
-
base_repo_path(),
|
|
124
|
-
item['project']['full_path'],
|
|
125
|
-
)
|
|
126
|
-
item['project']['root_project_full_path'] = base_repo_path()
|
|
127
|
-
|
|
128
|
-
self.assertEqual(
|
|
129
|
-
result.sort(key=lambda x: x['uuid']),
|
|
130
|
-
arr.sort(key=lambda x: x['uuid']),
|
|
131
|
-
)
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
def __assert_after_detail2(self, result, **kwargs):
|
|
135
|
-
with open(os.path.join(CURRENT_FILE_PATH, 'mocks', 'mock_design_project_platform.json')) as f:
|
|
136
|
-
item = json.loads(f.read())[0]
|
|
137
|
-
item['project']['full_path'] = os.path.join(
|
|
138
|
-
base_repo_path(),
|
|
139
|
-
item['project']['full_path'],
|
|
140
|
-
)
|
|
141
|
-
item['project']['root_project_full_path'] = base_repo_path()
|
|
142
|
-
|
|
143
|
-
self.assertEqual(
|
|
144
|
-
result,
|
|
145
|
-
item,
|
|
146
|
-
)
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
build_list_endpoint_tests(
|
|
150
|
-
CustomDesignProjectPlatformAPIEndpointTest,
|
|
151
|
-
list_count=2,
|
|
152
|
-
resource='custom_design',
|
|
153
|
-
result_keys_to_compare=[
|
|
154
|
-
'components',
|
|
155
|
-
'pages',
|
|
156
|
-
'project',
|
|
157
|
-
'uuid',
|
|
158
|
-
],
|
|
159
|
-
assert_after=__assert_after_list2,
|
|
160
|
-
build_query=__build_query,
|
|
161
|
-
patch_function_settings=[
|
|
162
|
-
(
|
|
163
|
-
'.'.join([
|
|
164
|
-
'mage_ai',
|
|
165
|
-
'api',
|
|
166
|
-
'resources',
|
|
167
|
-
'CustomDesignResource',
|
|
168
|
-
'Project',
|
|
169
|
-
'is_feature_enabled_in_root_or_active_project',
|
|
170
|
-
]),
|
|
171
|
-
lambda feature_name, user=None, **kwargs: FeatureUUID.CUSTOM_DESIGN == feature_name,
|
|
172
|
-
),
|
|
173
|
-
('mage_ai.presenters.design.models.project_platform_activated', lambda: True),
|
|
174
|
-
('mage_ai.settings.platform.utils.project_platform_activated', lambda: True),
|
|
175
|
-
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
176
|
-
],
|
|
177
|
-
)
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
build_detail_endpoint_tests(
|
|
181
|
-
CustomDesignProjectPlatformAPIEndpointTest,
|
|
182
|
-
resource='custom_design',
|
|
183
|
-
get_resource_id=lambda self: 'pipelines',
|
|
184
|
-
result_keys_to_compare=[
|
|
185
|
-
'components',
|
|
186
|
-
'pages',
|
|
187
|
-
'project',
|
|
188
|
-
'uuid',
|
|
189
|
-
],
|
|
190
|
-
assert_after=__assert_after_detail2,
|
|
191
|
-
patch_function_settings=[
|
|
192
|
-
(
|
|
193
|
-
'.'.join([
|
|
194
|
-
'mage_ai',
|
|
195
|
-
'api',
|
|
196
|
-
'resources',
|
|
197
|
-
'CustomDesignResource',
|
|
198
|
-
'Project',
|
|
199
|
-
'is_feature_enabled_in_root_or_active_project',
|
|
200
|
-
]),
|
|
201
|
-
lambda feature_name, user=None, **kwargs: FeatureUUID.CUSTOM_DESIGN == feature_name,
|
|
202
|
-
),
|
|
203
|
-
('mage_ai.presenters.design.models.project_platform_activated', lambda: True),
|
|
204
|
-
('mage_ai.settings.platform.utils.project_platform_activated', lambda: True),
|
|
205
|
-
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
206
|
-
],
|
|
207
|
-
)
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import os
|
|
3
|
+
from unittest.mock import patch
|
|
4
|
+
|
|
5
|
+
from mage_ai.data_preparation.models.project.constants import FeatureUUID
|
|
6
|
+
from mage_ai.settings.utils import base_repo_path
|
|
7
|
+
from mage_ai.tests.api.endpoints.mixins import (
|
|
8
|
+
BaseAPIEndpointTest,
|
|
9
|
+
build_detail_endpoint_tests,
|
|
10
|
+
build_list_endpoint_tests,
|
|
11
|
+
)
|
|
12
|
+
from mage_ai.tests.shared.mixins import CustomDesignMixin, ProjectPlatformMixin
|
|
13
|
+
|
|
14
|
+
CURRENT_FILE_PATH = os.path.dirname(os.path.realpath(__file__))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@patch('mage_ai.presenters.design.models.project_platform_activated', lambda: True)
|
|
18
|
+
@patch('mage_ai.settings.platform.utils.project_platform_activated', lambda: True)
|
|
19
|
+
@patch('mage_ai.settings.repo.project_platform_activated', lambda: True)
|
|
20
|
+
class CustomDesignProjectPlatformAPIEndpointTest(
|
|
21
|
+
CustomDesignMixin,
|
|
22
|
+
ProjectPlatformMixin,
|
|
23
|
+
BaseAPIEndpointTest,
|
|
24
|
+
):
|
|
25
|
+
pass
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def __build_query(test_case):
|
|
29
|
+
return dict(
|
|
30
|
+
operation=test_case.faker.name(),
|
|
31
|
+
page_path=test_case.faker.name(),
|
|
32
|
+
page_pathname=test_case.faker.name(),
|
|
33
|
+
page_query=test_case.faker.name(),
|
|
34
|
+
page_type=test_case.faker.name(),
|
|
35
|
+
page_uuid=test_case.faker.name(),
|
|
36
|
+
resource=test_case.faker.name(),
|
|
37
|
+
resource_id=test_case.faker.name(),
|
|
38
|
+
resource_parent=test_case.faker.name(),
|
|
39
|
+
resource_parent_id=test_case.faker.name(),
|
|
40
|
+
)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def __assert_after_list2(self, result, **kwargs):
|
|
44
|
+
with open(os.path.join(CURRENT_FILE_PATH, 'mocks', 'mock_design_project_platform.json')) as f:
|
|
45
|
+
arr = json.loads(f.read())
|
|
46
|
+
for item in arr:
|
|
47
|
+
item['project']['full_path'] = os.path.join(
|
|
48
|
+
base_repo_path(),
|
|
49
|
+
item['project']['full_path'],
|
|
50
|
+
)
|
|
51
|
+
item['project']['root_project_full_path'] = base_repo_path()
|
|
52
|
+
|
|
53
|
+
self.assertEqual(
|
|
54
|
+
result.sort(key=lambda x: x['uuid']),
|
|
55
|
+
arr.sort(key=lambda x: x['uuid']),
|
|
56
|
+
)
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
def __assert_after_detail2(self, result, **kwargs):
|
|
60
|
+
with open(os.path.join(CURRENT_FILE_PATH, 'mocks', 'mock_design_project_platform.json')) as f:
|
|
61
|
+
item = json.loads(f.read())[0]
|
|
62
|
+
item['project']['full_path'] = os.path.join(
|
|
63
|
+
base_repo_path(),
|
|
64
|
+
item['project']['full_path'],
|
|
65
|
+
)
|
|
66
|
+
item['project']['root_project_full_path'] = base_repo_path()
|
|
67
|
+
|
|
68
|
+
self.assertEqual(
|
|
69
|
+
result,
|
|
70
|
+
item,
|
|
71
|
+
)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
build_list_endpoint_tests(
|
|
75
|
+
CustomDesignProjectPlatformAPIEndpointTest,
|
|
76
|
+
list_count=2,
|
|
77
|
+
resource='custom_design',
|
|
78
|
+
result_keys_to_compare=[
|
|
79
|
+
'components',
|
|
80
|
+
'pages',
|
|
81
|
+
'project',
|
|
82
|
+
'uuid',
|
|
83
|
+
],
|
|
84
|
+
assert_after=__assert_after_list2,
|
|
85
|
+
build_query=__build_query,
|
|
86
|
+
patch_function_settings=[
|
|
87
|
+
(
|
|
88
|
+
'.'.join([
|
|
89
|
+
'mage_ai',
|
|
90
|
+
'api',
|
|
91
|
+
'resources',
|
|
92
|
+
'CustomDesignResource',
|
|
93
|
+
'Project',
|
|
94
|
+
'is_feature_enabled_in_root_or_active_project',
|
|
95
|
+
]),
|
|
96
|
+
lambda feature_name, user=None, **kwargs: FeatureUUID.CUSTOM_DESIGN == feature_name,
|
|
97
|
+
),
|
|
98
|
+
('mage_ai.presenters.design.models.project_platform_activated', lambda: True),
|
|
99
|
+
('mage_ai.settings.platform.utils.project_platform_activated', lambda: True),
|
|
100
|
+
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
101
|
+
],
|
|
102
|
+
)
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
build_detail_endpoint_tests(
|
|
106
|
+
CustomDesignProjectPlatformAPIEndpointTest,
|
|
107
|
+
resource='custom_design',
|
|
108
|
+
get_resource_id=lambda self: 'pipelines',
|
|
109
|
+
result_keys_to_compare=[
|
|
110
|
+
'components',
|
|
111
|
+
'pages',
|
|
112
|
+
'project',
|
|
113
|
+
'uuid',
|
|
114
|
+
],
|
|
115
|
+
assert_after=__assert_after_detail2,
|
|
116
|
+
patch_function_settings=[
|
|
117
|
+
(
|
|
118
|
+
'.'.join([
|
|
119
|
+
'mage_ai',
|
|
120
|
+
'api',
|
|
121
|
+
'resources',
|
|
122
|
+
'CustomDesignResource',
|
|
123
|
+
'Project',
|
|
124
|
+
'is_feature_enabled_in_root_or_active_project',
|
|
125
|
+
]),
|
|
126
|
+
lambda feature_name, user=None, **kwargs: FeatureUUID.CUSTOM_DESIGN == feature_name,
|
|
127
|
+
),
|
|
128
|
+
('mage_ai.presenters.design.models.project_platform_activated', lambda: True),
|
|
129
|
+
('mage_ai.settings.platform.utils.project_platform_activated', lambda: True),
|
|
130
|
+
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
131
|
+
],
|
|
132
|
+
)
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
3
|
+
from mage_ai.data_preparation.models.constants import BlockLanguage, BlockType
|
|
4
|
+
from mage_ai.data_preparation.models.pipeline import Pipeline
|
|
5
|
+
from mage_ai.settings.repo import get_repo_path
|
|
6
|
+
from mage_ai.tests.api.endpoints.mixins import (
|
|
7
|
+
BaseAPIEndpointTest,
|
|
8
|
+
build_create_endpoint_tests,
|
|
9
|
+
)
|
|
10
|
+
from mage_ai.tests.shared.mixins import DBTMixin
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def get_pipeline(self):
|
|
14
|
+
return Pipeline.get(self.pipeline.uuid, repo_path=get_repo_path())
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class DBTBlockAPIEndpointTest(BaseAPIEndpointTest, DBTMixin):
|
|
18
|
+
pass
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def __assert_after_create(self):
|
|
22
|
+
pipeline = get_pipeline(self)
|
|
23
|
+
blocks = pipeline.blocks_by_uuid.values()
|
|
24
|
+
blocks_dbt = list(filter(
|
|
25
|
+
lambda x: x.type == BlockType.DBT and x.language == BlockLanguage.SQL,
|
|
26
|
+
blocks,
|
|
27
|
+
))
|
|
28
|
+
|
|
29
|
+
self.assertEqual(len(blocks), 5)
|
|
30
|
+
self.assertEqual(len(blocks_dbt), 1)
|
|
31
|
+
|
|
32
|
+
block = blocks_dbt[0]
|
|
33
|
+
self.assertEqual({
|
|
34
|
+
'dbt_project_name': 'dbt/test_project',
|
|
35
|
+
'file_path': 'dbt/test_project/models/example/my_first_dbt_model.sql',
|
|
36
|
+
'file_source': {
|
|
37
|
+
'path': 'dbt/test_project/models/example/my_first_dbt_model.sql',
|
|
38
|
+
'project_path': 'dbt/test_project',
|
|
39
|
+
},
|
|
40
|
+
}, block.configuration)
|
|
41
|
+
|
|
42
|
+
return True
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def __assert_after_create_yaml(self):
|
|
46
|
+
pipeline = get_pipeline(self)
|
|
47
|
+
blocks = pipeline.blocks_by_uuid.values()
|
|
48
|
+
blocks_dbt = list(filter(
|
|
49
|
+
lambda x: x.type == BlockType.DBT and x.language == BlockLanguage.YAML,
|
|
50
|
+
blocks,
|
|
51
|
+
))
|
|
52
|
+
|
|
53
|
+
self.assertEqual(len(blocks), 5)
|
|
54
|
+
self.assertEqual(len(blocks_dbt), 1)
|
|
55
|
+
|
|
56
|
+
block = blocks_dbt[0]
|
|
57
|
+
self.assertEqual({
|
|
58
|
+
'dbt_project_name': 'dbt/test_project',
|
|
59
|
+
'file_source': {
|
|
60
|
+
'path': 'dbts/dbt_yaml.yaml',
|
|
61
|
+
'project_path': 'dbt/test_project',
|
|
62
|
+
},
|
|
63
|
+
}, block.configuration)
|
|
64
|
+
|
|
65
|
+
return True
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
build_create_endpoint_tests(
|
|
69
|
+
DBTBlockAPIEndpointTest,
|
|
70
|
+
assert_after_create_count=__assert_after_create,
|
|
71
|
+
assert_before_create_count=lambda self: len(get_pipeline(self).blocks_by_uuid.values()) == 4,
|
|
72
|
+
build_payload=lambda self: dict(
|
|
73
|
+
name=self.faker.unique.name(),
|
|
74
|
+
type=BlockType.DBT,
|
|
75
|
+
language=BlockLanguage.SQL,
|
|
76
|
+
configuration=dict(
|
|
77
|
+
file_path=os.path.join(
|
|
78
|
+
os.path.basename(self.dbt_directory),
|
|
79
|
+
'test_project',
|
|
80
|
+
'models',
|
|
81
|
+
'example',
|
|
82
|
+
'my_first_dbt_model.sql',
|
|
83
|
+
),
|
|
84
|
+
),
|
|
85
|
+
),
|
|
86
|
+
get_resource_parent_id=lambda self: self.pipeline.uuid,
|
|
87
|
+
resource='block',
|
|
88
|
+
resource_parent='pipelines',
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
build_create_endpoint_tests(
|
|
93
|
+
DBTBlockAPIEndpointTest,
|
|
94
|
+
test_uuid='dbt_yaml',
|
|
95
|
+
assert_after_create_count=__assert_after_create_yaml,
|
|
96
|
+
assert_before_create_count=lambda self: len(get_pipeline(self).blocks_by_uuid.values()) == 4,
|
|
97
|
+
build_payload=lambda self: dict(
|
|
98
|
+
name='dbt_yaml',
|
|
99
|
+
type=BlockType.DBT,
|
|
100
|
+
language=BlockLanguage.YAML,
|
|
101
|
+
configuration=dict(
|
|
102
|
+
dbt_project_name=os.path.join(
|
|
103
|
+
os.path.basename(self.dbt_directory),
|
|
104
|
+
'test_project',
|
|
105
|
+
),
|
|
106
|
+
),
|
|
107
|
+
),
|
|
108
|
+
get_resource_parent_id=lambda self: self.pipeline.uuid,
|
|
109
|
+
resource='block',
|
|
110
|
+
resource_parent='pipelines',
|
|
111
|
+
)
|
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
import urllib.parse
|
|
2
|
-
from unittest.mock import patch
|
|
3
2
|
|
|
4
3
|
from mage_ai.tests.api.endpoints.mixins import (
|
|
5
4
|
BaseAPIEndpointTest,
|
|
6
5
|
build_detail_endpoint_tests,
|
|
7
6
|
build_update_endpoint_tests,
|
|
8
7
|
)
|
|
9
|
-
from mage_ai.tests.shared.mixins import ProjectPlatformMixin
|
|
10
8
|
|
|
11
9
|
|
|
12
10
|
def get_resource_id(self) -> str:
|
|
@@ -44,49 +42,3 @@ build_update_endpoint_tests(
|
|
|
44
42
|
get_model_before_update=get_model_before_update,
|
|
45
43
|
assert_after_update=lambda self, result, model: model != result['content'],
|
|
46
44
|
)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
class FileContentWithProjectPlatformAPIEndpointTest(BaseAPIEndpointTest, ProjectPlatformMixin):
|
|
50
|
-
def setUp(self):
|
|
51
|
-
with patch('mage_ai.settings.platform.project_platform_activated', lambda: True):
|
|
52
|
-
with patch('mage_ai.settings.repo.project_platform_activated', lambda: True):
|
|
53
|
-
super().setUp()
|
|
54
|
-
self.setup_final()
|
|
55
|
-
|
|
56
|
-
def tearDown(self):
|
|
57
|
-
with patch('mage_ai.settings.platform.project_platform_activated', lambda: True):
|
|
58
|
-
with patch('mage_ai.settings.repo.project_platform_activated', lambda: True):
|
|
59
|
-
self.teardown_final()
|
|
60
|
-
super().tearDown()
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
build_detail_endpoint_tests(
|
|
64
|
-
FileContentWithProjectPlatformAPIEndpointTest,
|
|
65
|
-
resource='file_content',
|
|
66
|
-
get_resource_id=get_resource_id,
|
|
67
|
-
result_keys_to_compare=[
|
|
68
|
-
'content',
|
|
69
|
-
'name',
|
|
70
|
-
'path',
|
|
71
|
-
],
|
|
72
|
-
patch_function_settings=[
|
|
73
|
-
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
74
|
-
('mage_ai.settings.platform.project_platform_activated', lambda: True),
|
|
75
|
-
('mage_ai.api.resources.FileContentResource.ensure_file_is_in_project', lambda _x: True),
|
|
76
|
-
],
|
|
77
|
-
)
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
build_update_endpoint_tests(
|
|
81
|
-
FileContentWithProjectPlatformAPIEndpointTest,
|
|
82
|
-
resource='file_content',
|
|
83
|
-
get_resource_id=get_resource_id,
|
|
84
|
-
build_payload=lambda self: dict(content=self.faker.unique.name()),
|
|
85
|
-
get_model_before_update=get_model_before_update,
|
|
86
|
-
assert_after_update=lambda self, result, model, mocks: model != result['content'],
|
|
87
|
-
patch_function_settings=[
|
|
88
|
-
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
89
|
-
('mage_ai.settings.platform.project_platform_activated', lambda: True),
|
|
90
|
-
('mage_ai.api.resources.FileContentResource.ensure_file_is_in_project', lambda _x: True),
|
|
91
|
-
],
|
|
92
|
-
)
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import urllib.parse
|
|
2
|
+
from unittest.mock import patch
|
|
3
|
+
|
|
4
|
+
from mage_ai.tests.api.endpoints.mixins import (
|
|
5
|
+
BaseAPIEndpointTest,
|
|
6
|
+
build_detail_endpoint_tests,
|
|
7
|
+
build_update_endpoint_tests,
|
|
8
|
+
)
|
|
9
|
+
from mage_ai.tests.shared.mixins import ProjectPlatformMixin
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def get_resource_id(self) -> str:
|
|
13
|
+
block = list(self.pipeline.blocks_by_uuid.values())[0]
|
|
14
|
+
pk = block.file_path.replace(f'{self.pipeline.repo_path}/', '')
|
|
15
|
+
return urllib.parse.quote_plus(pk)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
def get_model_before_update(self):
|
|
19
|
+
block = list(self.pipeline.blocks_by_uuid.values())[0]
|
|
20
|
+
return block.file.content()
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class FileContentWithProjectPlatformAPIEndpointTest(BaseAPIEndpointTest, ProjectPlatformMixin):
|
|
24
|
+
def setUp(self):
|
|
25
|
+
with patch('mage_ai.settings.platform.project_platform_activated', lambda: True):
|
|
26
|
+
with patch('mage_ai.settings.repo.project_platform_activated', lambda: True):
|
|
27
|
+
super().setUp()
|
|
28
|
+
self.setup_final()
|
|
29
|
+
|
|
30
|
+
def tearDown(self):
|
|
31
|
+
with patch('mage_ai.settings.platform.project_platform_activated', lambda: True):
|
|
32
|
+
with patch('mage_ai.settings.repo.project_platform_activated', lambda: True):
|
|
33
|
+
self.teardown_final()
|
|
34
|
+
super().tearDown()
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
build_detail_endpoint_tests(
|
|
38
|
+
FileContentWithProjectPlatformAPIEndpointTest,
|
|
39
|
+
resource='file_content',
|
|
40
|
+
get_resource_id=get_resource_id,
|
|
41
|
+
result_keys_to_compare=[
|
|
42
|
+
'content',
|
|
43
|
+
'name',
|
|
44
|
+
'path',
|
|
45
|
+
],
|
|
46
|
+
patch_function_settings=[
|
|
47
|
+
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
48
|
+
('mage_ai.settings.platform.project_platform_activated', lambda: True),
|
|
49
|
+
('mage_ai.api.resources.FileContentResource.ensure_file_is_in_project', lambda _x: True),
|
|
50
|
+
],
|
|
51
|
+
)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
build_update_endpoint_tests(
|
|
55
|
+
FileContentWithProjectPlatformAPIEndpointTest,
|
|
56
|
+
resource='file_content',
|
|
57
|
+
get_resource_id=get_resource_id,
|
|
58
|
+
build_payload=lambda self: dict(content=self.faker.unique.name()),
|
|
59
|
+
get_model_before_update=get_model_before_update,
|
|
60
|
+
assert_after_update=lambda self, result, model, mocks: model != result['content'],
|
|
61
|
+
patch_function_settings=[
|
|
62
|
+
('mage_ai.settings.repo.project_platform_activated', lambda: True),
|
|
63
|
+
('mage_ai.settings.platform.project_platform_activated', lambda: True),
|
|
64
|
+
('mage_ai.api.resources.FileContentResource.ensure_file_is_in_project', lambda _x: True),
|
|
65
|
+
],
|
|
66
|
+
)
|