@aws-amplify/cli-internal-gen2-migration-experimental-alpha 0.1.0 → 0.3.0
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.
- package/aws-amplify-cli-internal-gen2-migration-experimental-alpha-0.3.0.tgz +0 -0
- package/lib/commands/drift-detection/detect-local-drift.d.ts +3 -6
- package/lib/commands/drift-detection/detect-local-drift.d.ts.map +1 -1
- package/lib/commands/drift-detection/detect-local-drift.js +4 -8
- package/lib/commands/drift-detection/detect-local-drift.js.map +1 -1
- package/lib/commands/drift-detection/detect-stack-drift.d.ts +3 -2
- package/lib/commands/drift-detection/detect-stack-drift.d.ts.map +1 -1
- package/lib/commands/drift-detection/detect-stack-drift.js +12 -0
- package/lib/commands/drift-detection/detect-stack-drift.js.map +1 -1
- package/lib/commands/drift-detection/detect-template-drift.d.ts +4 -5
- package/lib/commands/drift-detection/detect-template-drift.d.ts.map +1 -1
- package/lib/commands/drift-detection/detect-template-drift.js +122 -94
- package/lib/commands/drift-detection/detect-template-drift.js.map +1 -1
- package/lib/commands/drift-detection/index.d.ts +3 -2
- package/lib/commands/drift-detection/index.d.ts.map +1 -1
- package/lib/commands/drift-detection/index.js +3 -1
- package/lib/commands/drift-detection/index.js.map +1 -1
- package/lib/commands/drift-detection/services/cloudformation-service.d.ts.map +1 -1
- package/lib/commands/drift-detection/services/cloudformation-service.js +3 -5
- package/lib/commands/drift-detection/services/cloudformation-service.js.map +1 -1
- package/lib/commands/drift-detection/services/drift-formatter.d.ts +4 -5
- package/lib/commands/drift-detection/services/drift-formatter.d.ts.map +1 -1
- package/lib/commands/drift-detection/services/drift-formatter.js +15 -38
- package/lib/commands/drift-detection/services/drift-formatter.js.map +1 -1
- package/lib/commands/drift.d.ts +0 -2
- package/lib/commands/drift.d.ts.map +1 -1
- package/lib/commands/drift.js +47 -57
- package/lib/commands/drift.js.map +1 -1
- package/lib/commands/gen2-migration/_step.d.ts +2 -1
- package/lib/commands/gen2-migration/_step.d.ts.map +1 -1
- package/lib/commands/gen2-migration/_step.js +2 -1
- package/lib/commands/gen2-migration/_step.js.map +1 -1
- package/lib/commands/gen2-migration/generate/adapters/auth/index.d.ts +24 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.js +297 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.test.js +140 -0
- package/lib/commands/gen2-migration/generate/adapters/auth/index.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/data/index.d.ts +5 -0
- package/lib/commands/gen2-migration/generate/adapters/data/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/data/index.js +17 -0
- package/lib/commands/gen2-migration/generate/adapters/data/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/functions/index.d.ts +17 -0
- package/lib/commands/gen2-migration/generate/adapters/functions/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/functions/index.js +46 -0
- package/lib/commands/gen2-migration/generate/adapters/functions/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/project/index.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/adapters/project/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/project/index.js +7 -0
- package/lib/commands/gen2-migration/generate/adapters/project/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.d.ts +30 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.js +18 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.test.js +181 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/gen1_storage_codegen_adapter.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/index.d.ts +3 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/index.js +6 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/storage_access.d.ts +14 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/storage_access.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/storage_access.js +27 -0
- package/lib/commands/gen2-migration/generate/adapters/storage/storage_access.js.map +1 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.d.ts +80 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.js +899 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.test.js +744 -0
- package/lib/commands/gen2-migration/generate/backend/synthesizer.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/amplify_stack_parser.d.ts +14 -0
- package/lib/commands/gen2-migration/generate/codegen-head/amplify_stack_parser.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/amplify_stack_parser.js +82 -0
- package/lib/commands/gen2-migration/generate/codegen-head/amplify_stack_parser.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/analytics.d.ts +10 -0
- package/lib/commands/gen2-migration/generate/codegen-head/analytics.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/analytics.js +11 -0
- package/lib/commands/gen2-migration/generate/codegen-head/analytics.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_analytics_definition_fetcher.d.ts +13 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_analytics_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_analytics_definition_fetcher.js +22 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_analytics_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_auth_definition_fetcher.d.ts +24 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_auth_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_auth_definition_fetcher.js +167 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_auth_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_functions_definition_fetcher.d.ts +19 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_functions_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_functions_definition_fetcher.js +133 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_functions_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_storage_definition_fetcher.d.ts +23 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_storage_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_storage_definition_fetcher.js +172 -0
- package/lib/commands/gen2-migration/generate/codegen-head/app_storage_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_downloader.d.ts +10 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_downloader.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_downloader.js +48 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_downloader.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_environment_selector.d.ts +11 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_environment_selector.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_environment_selector.js +38 -0
- package/lib/commands/gen2-migration/generate/codegen-head/backend_environment_selector.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/command-handlers.d.ts +13 -0
- package/lib/commands/gen2-migration/generate/codegen-head/command-handlers.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/command-handlers.js +462 -0
- package/lib/commands/gen2-migration/generate/codegen-head/command-handlers.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/data_definition_fetcher.d.ts +47 -0
- package/lib/commands/gen2-migration/generate/codegen-head/data_definition_fetcher.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/data_definition_fetcher.js +222 -0
- package/lib/commands/gen2-migration/generate/codegen-head/data_definition_fetcher.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/directory_exists.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/codegen-head/directory_exists.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/directory_exists.js +15 -0
- package/lib/commands/gen2-migration/generate/codegen-head/directory_exists.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/format.d.ts +8 -0
- package/lib/commands/gen2-migration/generate/codegen-head/format.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/format.js +66 -0
- package/lib/commands/gen2-migration/generate/codegen-head/format.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/logger.d.ts +15 -0
- package/lib/commands/gen2-migration/generate/codegen-head/logger.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/logger.js +14 -0
- package/lib/commands/gen2-migration/generate/codegen-head/logger.js.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/printer.d.ts +26 -0
- package/lib/commands/gen2-migration/generate/codegen-head/printer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/codegen-head/printer.js +103 -0
- package/lib/commands/gen2-migration/generate/codegen-head/printer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/core/migration-pipeline.d.ts +26 -0
- package/lib/commands/gen2-migration/generate/core/migration-pipeline.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/core/migration-pipeline.js +233 -0
- package/lib/commands/gen2-migration/generate/core/migration-pipeline.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/backend-updater.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/backend-updater.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/dependency-merger.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/dependency-merger.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/file-converter.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/file-converter.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/gen2-file-generator.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/generator/gen2-file-generator.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/parser/cdk-stack-parser.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/parser/cdk-stack-parser.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/parser/pattern-detector.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/parser/pattern-detector.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/scanner/custom-resource-scanner.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/scanner/custom-resource-scanner.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/transformer/amplify-helper-transformer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/transformer/amplify-helper-transformer.js +25 -3
- package/lib/commands/gen2-migration/generate/custom-resources/transformer/amplify-helper-transformer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/types.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/custom-resources/types.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/analytics/index.d.ts +9 -0
- package/lib/commands/gen2-migration/generate/generators/analytics/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/analytics/index.js +40 -0
- package/lib/commands/gen2-migration/generate/generators/analytics/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.d.ts +106 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.js +286 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.test.js +437 -0
- package/lib/commands/gen2-migration/generate/generators/auth/index.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.d.ts +35 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.js +199 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.test.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.test.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.test.js +50 -0
- package/lib/commands/gen2-migration/generate/generators/data/index.test.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/functions/index.d.ts +17 -0
- package/lib/commands/gen2-migration/generate/generators/functions/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/functions/index.js +125 -0
- package/lib/commands/gen2-migration/generate/generators/functions/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/functions/lambda.d.ts +6 -0
- package/lib/commands/gen2-migration/generate/generators/functions/lambda.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/functions/lambda.js +16 -0
- package/lib/commands/gen2-migration/generate/generators/functions/lambda.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/storage/access.d.ts +4 -0
- package/lib/commands/gen2-migration/generate/generators/storage/access.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/storage/access.js +53 -0
- package/lib/commands/gen2-migration/generate/generators/storage/access.js.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/storage/index.d.ts +31 -0
- package/lib/commands/gen2-migration/generate/generators/storage/index.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/generators/storage/index.js +66 -0
- package/lib/commands/gen2-migration/generate/generators/storage/index.js.map +1 -0
- package/lib/commands/gen2-migration/generate/npm_package/renderer.d.ts +27 -0
- package/lib/commands/gen2-migration/generate/npm_package/renderer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/npm_package/renderer.js +28 -0
- package/lib/commands/gen2-migration/generate/npm_package/renderer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/render_pipeline.d.ts +9 -0
- package/lib/commands/gen2-migration/generate/render_pipeline.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/render_pipeline.js +15 -0
- package/lib/commands/gen2-migration/generate/render_pipeline.js.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/ensure_directory.d.ts +7 -0
- package/lib/commands/gen2-migration/generate/renderers/ensure_directory.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/ensure_directory.js +17 -0
- package/lib/commands/gen2-migration/generate/renderers/ensure_directory.js.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/package_json.d.ts +8 -0
- package/lib/commands/gen2-migration/generate/renderers/package_json.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/package_json.js +15 -0
- package/lib/commands/gen2-migration/generate/renderers/package_json.js.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/typescript_block_node.d.ts +11 -0
- package/lib/commands/gen2-migration/generate/renderers/typescript_block_node.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/renderers/typescript_block_node.js +22 -0
- package/lib/commands/gen2-migration/generate/renderers/typescript_block_node.js.map +1 -0
- package/lib/commands/gen2-migration/generate/resource/resource.d.ts +20 -0
- package/lib/commands/gen2-migration/generate/resource/resource.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/resource/resource.js +60 -0
- package/lib/commands/gen2-migration/generate/resource/resource.js.map +1 -0
- package/lib/commands/gen2-migration/generate/test_utils/import_regex.d.ts +2 -0
- package/lib/commands/gen2-migration/generate/test_utils/import_regex.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/test_utils/import_regex.js +6 -0
- package/lib/commands/gen2-migration/generate/test_utils/import_regex.js.map +1 -0
- package/lib/commands/gen2-migration/generate/test_utils/ts_node_printer.d.ts +4 -0
- package/lib/commands/gen2-migration/generate/test_utils/ts_node_printer.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/test_utils/ts_node_printer.js +22 -0
- package/lib/commands/gen2-migration/generate/test_utils/ts_node_printer.js.map +1 -0
- package/lib/commands/gen2-migration/generate/todo_error.d.ts +3 -0
- package/lib/commands/gen2-migration/generate/todo_error.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/todo_error.js +11 -0
- package/lib/commands/gen2-migration/generate/todo_error.js.map +1 -0
- package/lib/commands/gen2-migration/generate/ts_factory_utils.d.ts +3 -0
- package/lib/commands/gen2-migration/generate/ts_factory_utils.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/ts_factory_utils.js +10 -0
- package/lib/commands/gen2-migration/generate/ts_factory_utils.js.map +1 -0
- package/lib/commands/gen2-migration/generate/types.d.ts +4 -0
- package/lib/commands/gen2-migration/generate/types.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/types.js +3 -0
- package/lib/commands/gen2-migration/generate/types.js.map +1 -0
- package/lib/commands/gen2-migration/generate/unsupported/cdk-from-cfn.d.ts +26 -0
- package/lib/commands/gen2-migration/generate/unsupported/cdk-from-cfn.d.ts.map +1 -0
- package/lib/commands/gen2-migration/generate/unsupported/cdk-from-cfn.js +152 -0
- package/lib/commands/gen2-migration/generate/unsupported/cdk-from-cfn.js.map +1 -0
- package/lib/commands/gen2-migration/generate.js +2 -2
- package/lib/commands/gen2-migration/generate.js.map +1 -1
- package/lib/commands/gen2-migration.d.ts.map +1 -1
- package/lib/commands/gen2-migration.js +2 -1
- package/lib/commands/gen2-migration.js.map +1 -1
- package/package.json +3 -2
- package/aws-amplify-cli-internal-gen2-migration-experimental-alpha-0.1.0.tgz +0 -0
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/backend-updater.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/backend-updater.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/dependency-merger.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/dependency-merger.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/file-converter.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/file-converter.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/gen2-file-generator.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/generator/gen2-file-generator.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/parser/cdk-stack-parser.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/parser/cdk-stack-parser.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/parser/pattern-detector.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/parser/pattern-detector.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/scanner/custom-resource-scanner.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/scanner/custom-resource-scanner.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/transformer/amplify-helper-transformer.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/transformer/amplify-helper-transformer.js.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/types.d.ts.map +0 -1
- package/lib/commands/gen2-migration/codegen-custom-resources/types.js.map +0 -1
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/backend-updater.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/backend-updater.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/dependency-merger.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/dependency-merger.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/file-converter.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/file-converter.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/gen2-file-generator.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/generator/gen2-file-generator.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/parser/cdk-stack-parser.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/parser/cdk-stack-parser.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/parser/pattern-detector.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/parser/pattern-detector.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/scanner/custom-resource-scanner.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/scanner/custom-resource-scanner.js +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/transformer/amplify-helper-transformer.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/types.d.ts +0 -0
- /package/lib/commands/gen2-migration/{codegen-custom-resources → generate/custom-resources}/types.js +0 -0
|
@@ -0,0 +1,437 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const node_assert_1 = __importDefault(require("node:assert"));
|
|
7
|
+
const index_1 = require("./index");
|
|
8
|
+
const ts_node_printer_1 = require("../../test_utils/ts_node_printer");
|
|
9
|
+
describe('render auth node', () => {
|
|
10
|
+
describe('external providers', () => {
|
|
11
|
+
describe('Google', () => {
|
|
12
|
+
it('renders the google provider', () => {
|
|
13
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
14
|
+
loginOptions: { googleLogin: true, callbackURLs: ['https://example.com/callback'], logoutURLs: ['https://example.com/logout'] },
|
|
15
|
+
});
|
|
16
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
17
|
+
node_assert_1.default.match(source, /google:/);
|
|
18
|
+
node_assert_1.default.match(source, /clientId: secret\("GOOGLE_CLIENT_ID"\)/);
|
|
19
|
+
node_assert_1.default.match(source, /clientSecret: secret\("GOOGLE_CLIENT_SECRET"\)/);
|
|
20
|
+
node_assert_1.default.match(source, /callbackUrls: \[\"https:\/\/example\.com\/callback\"\]/);
|
|
21
|
+
node_assert_1.default.match(source, /logoutUrls: \[\"https:\/\/example\.com\/logout\"\]/);
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
describe('Facebook', () => {
|
|
25
|
+
it('renders the facebook provider', () => {
|
|
26
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
27
|
+
loginOptions: { facebookLogin: true, callbackURLs: ['https://example.com/callback'], logoutURLs: ['https://example.com/logout'] },
|
|
28
|
+
});
|
|
29
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
30
|
+
node_assert_1.default.match(source, /facebook:/);
|
|
31
|
+
node_assert_1.default.match(source, /clientId: secret\("FACEBOOK_CLIENT_ID"\)/);
|
|
32
|
+
node_assert_1.default.match(source, /clientSecret: secret\("FACEBOOK_CLIENT_SECRET"\)/);
|
|
33
|
+
node_assert_1.default.match(source, /callbackUrls: \[\"https:\/\/example\.com\/callback\"\]/);
|
|
34
|
+
node_assert_1.default.match(source, /logoutUrls: \[\"https:\/\/example\.com\/logout\"\]/);
|
|
35
|
+
});
|
|
36
|
+
});
|
|
37
|
+
describe('Apple', () => {
|
|
38
|
+
it('renders the apple provider', () => {
|
|
39
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
40
|
+
loginOptions: { appleLogin: true, callbackURLs: ['https://example.com/callback'], logoutURLs: ['https://example.com/logout'] },
|
|
41
|
+
});
|
|
42
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
43
|
+
node_assert_1.default.match(source, /signInWithApple:/);
|
|
44
|
+
node_assert_1.default.match(source, /clientId: secret\("SIWA_CLIENT_ID"\)/);
|
|
45
|
+
node_assert_1.default.match(source, /keyId: secret\("SIWA_KEY_ID"\)/);
|
|
46
|
+
node_assert_1.default.match(source, /privateKey: secret\("SIWA_PRIVATE_KEY"\)/);
|
|
47
|
+
node_assert_1.default.match(source, /teamId: secret\("SIWA_TEAM_ID"\)/);
|
|
48
|
+
node_assert_1.default.match(source, /callbackUrls: \[\"https:\/\/example\.com\/callback\"\]/);
|
|
49
|
+
node_assert_1.default.match(source, /logoutUrls: \[\"https:\/\/example\.com\/logout\"\]/);
|
|
50
|
+
});
|
|
51
|
+
});
|
|
52
|
+
describe('Amazon', () => {
|
|
53
|
+
it('renders the amazon provider', () => {
|
|
54
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
55
|
+
loginOptions: { amazonLogin: true, callbackURLs: ['https://example.com/callback'], logoutURLs: ['https://example.com/logout'] },
|
|
56
|
+
});
|
|
57
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
58
|
+
node_assert_1.default.match(source, /loginWithAmazon:/);
|
|
59
|
+
node_assert_1.default.match(source, /clientId: secret\("LOGINWITHAMAZON_CLIENT_ID"\)/);
|
|
60
|
+
node_assert_1.default.match(source, /clientSecret: secret\("LOGINWITHAMAZON_CLIENT_SECRET"\)/);
|
|
61
|
+
node_assert_1.default.match(source, /callbackUrls: \[\"https:\/\/example\.com\/callback\"\]/);
|
|
62
|
+
node_assert_1.default.match(source, /logoutUrls: \[\"https:\/\/example\.com\/logout\"\]/);
|
|
63
|
+
});
|
|
64
|
+
});
|
|
65
|
+
describe('OIDC', () => {
|
|
66
|
+
it('renders the oidc provider', () => {
|
|
67
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
68
|
+
loginOptions: {
|
|
69
|
+
oidcLogin: [{ issuerUrl: 'https://e' }, { name: 'Sanay', issuerUrl: 'hey' }],
|
|
70
|
+
callbackURLs: ['https://example.com/callback'],
|
|
71
|
+
logoutURLs: ['https://example.com/logout'],
|
|
72
|
+
},
|
|
73
|
+
});
|
|
74
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
75
|
+
node_assert_1.default.match(source, /oidc:/);
|
|
76
|
+
node_assert_1.default.match(source, /clientId: secret\("OIDC_CLIENT_ID_1"\)/);
|
|
77
|
+
node_assert_1.default.match(source, /clientSecret: secret\("OIDC_CLIENT_SECRET_1"\)/);
|
|
78
|
+
node_assert_1.default.match(source, /issuerUrl: \"https:\/\/e\"/);
|
|
79
|
+
node_assert_1.default.match(source, /issuerUrl: \"hey\"/);
|
|
80
|
+
node_assert_1.default.match(source, /name: "Sanay"/);
|
|
81
|
+
});
|
|
82
|
+
it('does not render OIDC if not passed', () => {
|
|
83
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
84
|
+
loginOptions: {
|
|
85
|
+
oidcLogin: [],
|
|
86
|
+
},
|
|
87
|
+
});
|
|
88
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
89
|
+
(0, node_assert_1.default)(!source.includes('oidc:'));
|
|
90
|
+
});
|
|
91
|
+
});
|
|
92
|
+
describe('SAML', () => {
|
|
93
|
+
it('renders the saml provider', () => {
|
|
94
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
95
|
+
loginOptions: {
|
|
96
|
+
samlLogin: { name: 'Sanay', metadata: { metadataContent: 'content', metadataType: 'URL' } },
|
|
97
|
+
callbackURLs: ['https://example.com/callback'],
|
|
98
|
+
logoutURLs: ['https://example.com/logout'],
|
|
99
|
+
},
|
|
100
|
+
});
|
|
101
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
102
|
+
node_assert_1.default.match(source, /saml:/);
|
|
103
|
+
node_assert_1.default.match(source, /metadataContent: \"content\"/);
|
|
104
|
+
node_assert_1.default.match(source, /metadataType: \"URL\"/);
|
|
105
|
+
node_assert_1.default.match(source, /name: "Sanay"/);
|
|
106
|
+
});
|
|
107
|
+
it('does not render SAML if not passed', () => {
|
|
108
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
109
|
+
loginOptions: {},
|
|
110
|
+
});
|
|
111
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
112
|
+
(0, node_assert_1.default)(!source.includes('saml:'));
|
|
113
|
+
});
|
|
114
|
+
});
|
|
115
|
+
});
|
|
116
|
+
describe('lambda', () => {
|
|
117
|
+
it('adds a triggers object when a lambda trigger is defined', () => {
|
|
118
|
+
const rendered = (0, index_1.renderAuthNode)({ lambdaTriggers: { preSignUp: { source: 'amplify/backend/function/testfunction/handler.ts' } } });
|
|
119
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
120
|
+
node_assert_1.default.match(source, /triggers: \{/);
|
|
121
|
+
});
|
|
122
|
+
const testCases = {
|
|
123
|
+
createAuthChallenge: true,
|
|
124
|
+
customMessage: true,
|
|
125
|
+
defineAuthChallenge: true,
|
|
126
|
+
postAuthentication: true,
|
|
127
|
+
postConfirmation: true,
|
|
128
|
+
preAuthentication: true,
|
|
129
|
+
preSignUp: true,
|
|
130
|
+
preTokenGeneration: true,
|
|
131
|
+
userMigration: true,
|
|
132
|
+
verifyAuthChallengeResponse: true,
|
|
133
|
+
};
|
|
134
|
+
for (const testCase of Object.keys(testCases)) {
|
|
135
|
+
const rendered = (0, index_1.renderAuthNode)({ lambdaTriggers: { [testCase]: { source: `amplify/backend/function/${testCase}/handler.ts` } } });
|
|
136
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
137
|
+
node_assert_1.default.match(source, new RegExp(`triggers:\\s*{\\s*${testCase}:\\s*${testCase}\\s*}`));
|
|
138
|
+
}
|
|
139
|
+
});
|
|
140
|
+
describe('mfa', () => {
|
|
141
|
+
it('does not render the multifactor property if no multifactor options are specified', () => {
|
|
142
|
+
const rendered = (0, index_1.renderAuthNode)({});
|
|
143
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
144
|
+
node_assert_1.default.doesNotMatch(source, new RegExp(`multifactor:`));
|
|
145
|
+
});
|
|
146
|
+
describe('totp', () => {
|
|
147
|
+
it('does not render totp if totp is not specified', () => {
|
|
148
|
+
const rendered = (0, index_1.renderAuthNode)({ mfa: { mode: 'OPTIONAL' } });
|
|
149
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
150
|
+
node_assert_1.default.doesNotMatch(source, new RegExp(`multifactor:\\s+\\{[\\s\\S]*totp:\\strue`));
|
|
151
|
+
});
|
|
152
|
+
const totpStates = [true, false];
|
|
153
|
+
for (const state of totpStates) {
|
|
154
|
+
it(`correctly renders totp state of ${state}`, async () => {
|
|
155
|
+
const rendered = (0, index_1.renderAuthNode)({ mfa: { mode: 'OPTIONAL', totp: state } });
|
|
156
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
157
|
+
node_assert_1.default.match(source, new RegExp(`multifactor:\\s+\\{[\\s\\S]*totp:\\s${state}`));
|
|
158
|
+
});
|
|
159
|
+
}
|
|
160
|
+
});
|
|
161
|
+
describe('sms', () => {
|
|
162
|
+
it('does not render sms if sms is not specified', () => {
|
|
163
|
+
const rendered = (0, index_1.renderAuthNode)({ mfa: { mode: 'OPTIONAL' } });
|
|
164
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
165
|
+
node_assert_1.default.doesNotMatch(source, new RegExp(`multifactor:\\s+\\{[\\s\\S]*sms:\\strue`));
|
|
166
|
+
});
|
|
167
|
+
const smsStates = [true, false];
|
|
168
|
+
for (const state of smsStates) {
|
|
169
|
+
it(`correctly renders sms state of ${state}`, async () => {
|
|
170
|
+
const rendered = (0, index_1.renderAuthNode)({ mfa: { mode: 'OPTIONAL', sms: state } });
|
|
171
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
172
|
+
node_assert_1.default.match(source, new RegExp(`multifactor:\\s+\\{[\\s\\S]*sms:\\s${state}`));
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
});
|
|
176
|
+
const modes = ['REQUIRED', 'OFF', 'OPTIONAL'];
|
|
177
|
+
for (const mode of modes) {
|
|
178
|
+
it(`correctly renders mfa state of ${mode}`, async () => {
|
|
179
|
+
const rendered = (0, index_1.renderAuthNode)({ mfa: { mode } });
|
|
180
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
181
|
+
node_assert_1.default.match(source, new RegExp(`multifactor:\\s+\\{\\s+mode:\\s"${mode}"`));
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
});
|
|
185
|
+
describe('imports', () => {
|
|
186
|
+
it('imports @aws-amplify/backend', async () => {
|
|
187
|
+
const rendered = (0, index_1.renderAuthNode)({
|
|
188
|
+
loginOptions: { email: true },
|
|
189
|
+
});
|
|
190
|
+
const source = (0, ts_node_printer_1.printNodeArray)(rendered);
|
|
191
|
+
node_assert_1.default.match(source, /import\s?\{\s?defineAuth\s?\}\s?from\s?"\@aws-amplify\/backend"/);
|
|
192
|
+
});
|
|
193
|
+
});
|
|
194
|
+
describe('username attributes', () => {
|
|
195
|
+
describe('Standard Attributes', () => {
|
|
196
|
+
const attributes = [
|
|
197
|
+
'email',
|
|
198
|
+
'gender',
|
|
199
|
+
'locale',
|
|
200
|
+
'address',
|
|
201
|
+
'website',
|
|
202
|
+
'fullname',
|
|
203
|
+
'nickname',
|
|
204
|
+
'timezone',
|
|
205
|
+
'birthdate',
|
|
206
|
+
'givenName',
|
|
207
|
+
'familyName',
|
|
208
|
+
'middleName',
|
|
209
|
+
'phoneNumber',
|
|
210
|
+
'profilePage',
|
|
211
|
+
'profilePicture',
|
|
212
|
+
'lastUpdateTime',
|
|
213
|
+
'preferredUsername',
|
|
214
|
+
];
|
|
215
|
+
for (const attribute of attributes) {
|
|
216
|
+
for (const truthiness of [true, false]) {
|
|
217
|
+
it(`renders ${attribute}: ${truthiness} individually`, () => {
|
|
218
|
+
const authDefinition = {
|
|
219
|
+
loginOptions: {
|
|
220
|
+
email: true,
|
|
221
|
+
},
|
|
222
|
+
standardUserAttributes: {
|
|
223
|
+
[attribute]: {
|
|
224
|
+
mutable: truthiness,
|
|
225
|
+
required: truthiness,
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
};
|
|
229
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
230
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
231
|
+
(0, node_assert_1.default)(source.includes(attribute));
|
|
232
|
+
(0, node_assert_1.default)(source.includes(`mutable: ${truthiness}`));
|
|
233
|
+
(0, node_assert_1.default)(source.includes(`required: ${truthiness}`));
|
|
234
|
+
});
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
});
|
|
238
|
+
describe('Custom Attributes', () => {
|
|
239
|
+
it('renders custom attributes', () => {
|
|
240
|
+
const authDefinition = {
|
|
241
|
+
loginOptions: {
|
|
242
|
+
email: true,
|
|
243
|
+
},
|
|
244
|
+
customUserAttributes: { 'custom:Test1': { dataType: 'Number', mutable: true, min: 10, max: 100 } },
|
|
245
|
+
};
|
|
246
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
247
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
248
|
+
(0, node_assert_1.default)(source.includes('custom:Test1'));
|
|
249
|
+
(0, node_assert_1.default)(source.includes('dataType: "Number"'));
|
|
250
|
+
});
|
|
251
|
+
it('does not render anything if CustomAttribute is undefined', () => {
|
|
252
|
+
const authDefinition = {
|
|
253
|
+
loginOptions: {
|
|
254
|
+
email: true,
|
|
255
|
+
},
|
|
256
|
+
customUserAttributes: { 'custom:isAllowed': undefined },
|
|
257
|
+
};
|
|
258
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
259
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
260
|
+
(0, node_assert_1.default)(!source.includes('custom:isAllowed'));
|
|
261
|
+
});
|
|
262
|
+
});
|
|
263
|
+
});
|
|
264
|
+
describe('groups', () => {
|
|
265
|
+
it('renders groups', () => {
|
|
266
|
+
const authDefinition = {
|
|
267
|
+
loginOptions: {},
|
|
268
|
+
groups: ['manager'],
|
|
269
|
+
};
|
|
270
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
271
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
272
|
+
node_assert_1.default.match(source, /defineAuth\(\{[\s\S]*groups:\s\["manager"\]/);
|
|
273
|
+
});
|
|
274
|
+
});
|
|
275
|
+
describe('loginWith', () => {
|
|
276
|
+
describe('email', () => {
|
|
277
|
+
const emailPropertyTestCases = [
|
|
278
|
+
{
|
|
279
|
+
optionProperty: 'emailVerificationSubject',
|
|
280
|
+
value: 'My Verification Subject',
|
|
281
|
+
gen2DefinitionProperty: 'verificationEmailSubject',
|
|
282
|
+
searchPattern: '"My Verification Subject"',
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
optionProperty: 'emailVerificationBody',
|
|
286
|
+
gen2DefinitionProperty: 'verificationEmailBody',
|
|
287
|
+
value: 'My Verification Body',
|
|
288
|
+
searchPattern: '\\(\\) => "My Verification Body"',
|
|
289
|
+
},
|
|
290
|
+
];
|
|
291
|
+
for (const { optionProperty: property, value, searchPattern, gen2DefinitionProperty } of emailPropertyTestCases) {
|
|
292
|
+
it(`renders email login parameter ${property}`, () => {
|
|
293
|
+
const emailOptions = {
|
|
294
|
+
[property]: value,
|
|
295
|
+
};
|
|
296
|
+
const authDefinition = {
|
|
297
|
+
loginOptions: {
|
|
298
|
+
emailOptions,
|
|
299
|
+
},
|
|
300
|
+
};
|
|
301
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
302
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
303
|
+
node_assert_1.default.match(source, new RegExp(`defineAuth\\(\\{\\s+loginWith:\\s+\\{\\s+email:\\s+\\{\\s+${gen2DefinitionProperty}: ${searchPattern}\\s+\\}\\s+\\}\\s+\\}\\)`));
|
|
304
|
+
});
|
|
305
|
+
}
|
|
306
|
+
it('renders `email: true`', () => {
|
|
307
|
+
const authDefinition = {
|
|
308
|
+
loginOptions: {
|
|
309
|
+
email: true,
|
|
310
|
+
},
|
|
311
|
+
};
|
|
312
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
313
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
314
|
+
node_assert_1.default.match(source, /defineAuth\(\{\s+loginWith:\s+\{\s+email:\s?true\s+\}\s+\}\)/);
|
|
315
|
+
});
|
|
316
|
+
});
|
|
317
|
+
describe('phone', () => {
|
|
318
|
+
it('renders `phone: true`', () => {
|
|
319
|
+
const authDefinition = {
|
|
320
|
+
loginOptions: {
|
|
321
|
+
phone: true,
|
|
322
|
+
},
|
|
323
|
+
};
|
|
324
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
325
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
326
|
+
node_assert_1.default.match(source, /defineAuth\(\{\s+loginWith:\s+\{\s+phone:\s?true\s+\}\s+\}\)/);
|
|
327
|
+
});
|
|
328
|
+
});
|
|
329
|
+
describe('OAuth scopes', () => {
|
|
330
|
+
it('renders oauth scopes', () => {
|
|
331
|
+
const authDefinition = {
|
|
332
|
+
loginOptions: {
|
|
333
|
+
googleLogin: true,
|
|
334
|
+
googleScopes: ['email', 'openid'],
|
|
335
|
+
},
|
|
336
|
+
};
|
|
337
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
338
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
339
|
+
node_assert_1.default.match(source, /google:\s*\{[\s\S]*scopes:\s*\["email",\s*"openid"\]/);
|
|
340
|
+
});
|
|
341
|
+
it('renders no oauth scopes if not passed', () => {
|
|
342
|
+
const authDefinition = {
|
|
343
|
+
loginOptions: {},
|
|
344
|
+
};
|
|
345
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
346
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
347
|
+
node_assert_1.default.doesNotMatch(source, /scopes:/);
|
|
348
|
+
});
|
|
349
|
+
});
|
|
350
|
+
it('renders attributeMapping if passed along with Google login', () => {
|
|
351
|
+
const authDefinition = {
|
|
352
|
+
loginOptions: {
|
|
353
|
+
googleLogin: true,
|
|
354
|
+
googleAttributes: { fullname: 'name' },
|
|
355
|
+
},
|
|
356
|
+
};
|
|
357
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
358
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
359
|
+
node_assert_1.default.match(source, /defineAuth\(\{[\s\S]*attributeMapping:\s\{[\s\S]*fullname:\s"name"/);
|
|
360
|
+
});
|
|
361
|
+
});
|
|
362
|
+
describe('reference auth', () => {
|
|
363
|
+
it(`renders successfully for imported userpool`, () => {
|
|
364
|
+
const referenceAuthProps = {
|
|
365
|
+
userPoolId: 'userPoolId',
|
|
366
|
+
userPoolClientId: 'userPoolClientId',
|
|
367
|
+
groups: {
|
|
368
|
+
Admin: 'AdminRoleARN',
|
|
369
|
+
ReadOnly: 'ReadOnlyRoleARN',
|
|
370
|
+
},
|
|
371
|
+
};
|
|
372
|
+
const authDefinition = {
|
|
373
|
+
referenceAuth: referenceAuthProps,
|
|
374
|
+
};
|
|
375
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
376
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
377
|
+
node_assert_1.default.match(source, /referenceAuth/);
|
|
378
|
+
node_assert_1.default.match(source, /userPoolId: "userPoolId"/);
|
|
379
|
+
node_assert_1.default.match(source, /userPoolClientId: "userPoolClientId"/);
|
|
380
|
+
node_assert_1.default.match(source, /groups:/);
|
|
381
|
+
node_assert_1.default.match(source, /"Admin": "AdminRoleARN"/);
|
|
382
|
+
node_assert_1.default.match(source, /"ReadOnly": "ReadOnlyRoleARN"/);
|
|
383
|
+
node_assert_1.default.doesNotMatch(source, /identityPoolId: "identityPoolId"/);
|
|
384
|
+
node_assert_1.default.doesNotMatch(source, /authRoleArn: "authRoleArn"/);
|
|
385
|
+
node_assert_1.default.doesNotMatch(source, /unauthRoleArn: "unauthRoleArn"/);
|
|
386
|
+
});
|
|
387
|
+
it(`renders successfully for imported identity pool`, () => {
|
|
388
|
+
const referenceAuthProps = {
|
|
389
|
+
identityPoolId: 'identityPoolId',
|
|
390
|
+
authRoleArn: 'authRoleArn',
|
|
391
|
+
unauthRoleArn: 'unauthRoleArn',
|
|
392
|
+
};
|
|
393
|
+
const authDefinition = {
|
|
394
|
+
referenceAuth: referenceAuthProps,
|
|
395
|
+
};
|
|
396
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
397
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
398
|
+
node_assert_1.default.match(source, /referenceAuth/);
|
|
399
|
+
node_assert_1.default.match(source, /identityPoolId: "identityPoolId"/);
|
|
400
|
+
node_assert_1.default.match(source, /authRoleArn: "authRoleArn"/);
|
|
401
|
+
node_assert_1.default.match(source, /unauthRoleArn: "unauthRoleArn"/);
|
|
402
|
+
node_assert_1.default.doesNotMatch(source, /userPoolId: "userPoolId"/);
|
|
403
|
+
node_assert_1.default.doesNotMatch(source, /userPoolClientId: "userPoolClientId"/);
|
|
404
|
+
node_assert_1.default.doesNotMatch(source, /groups:/);
|
|
405
|
+
node_assert_1.default.doesNotMatch(source, /"Admin": "AdminRoleARN"/);
|
|
406
|
+
node_assert_1.default.doesNotMatch(source, /"ReadOnly": "ReadOnlyRoleARN"/);
|
|
407
|
+
});
|
|
408
|
+
it(`renders successfully for imported userpool and identity pool`, () => {
|
|
409
|
+
const referenceAuthProps = {
|
|
410
|
+
userPoolId: 'userPoolId',
|
|
411
|
+
userPoolClientId: 'userPoolClientId',
|
|
412
|
+
identityPoolId: 'identityPoolId',
|
|
413
|
+
authRoleArn: 'authRoleArn',
|
|
414
|
+
unauthRoleArn: 'unauthRoleArn',
|
|
415
|
+
groups: {
|
|
416
|
+
Admin: 'AdminRoleARN',
|
|
417
|
+
'Read-Only': 'ReadOnlyRoleARN',
|
|
418
|
+
},
|
|
419
|
+
};
|
|
420
|
+
const authDefinition = {
|
|
421
|
+
referenceAuth: referenceAuthProps,
|
|
422
|
+
};
|
|
423
|
+
const node = (0, index_1.renderAuthNode)(authDefinition);
|
|
424
|
+
const source = (0, ts_node_printer_1.printNodeArray)(node);
|
|
425
|
+
node_assert_1.default.match(source, /referenceAuth/);
|
|
426
|
+
node_assert_1.default.match(source, /userPoolId: "userPoolId"/);
|
|
427
|
+
node_assert_1.default.match(source, /userPoolClientId: "userPoolClientId"/);
|
|
428
|
+
node_assert_1.default.match(source, /identityPoolId: "identityPoolId"/);
|
|
429
|
+
node_assert_1.default.match(source, /authRoleArn: "authRoleArn"/);
|
|
430
|
+
node_assert_1.default.match(source, /unauthRoleArn: "unauthRoleArn"/);
|
|
431
|
+
node_assert_1.default.match(source, /groups:/);
|
|
432
|
+
node_assert_1.default.match(source, /"Admin": "AdminRoleARN"/);
|
|
433
|
+
node_assert_1.default.match(source, /"Read-Only": "ReadOnlyRoleARN"/);
|
|
434
|
+
});
|
|
435
|
+
});
|
|
436
|
+
});
|
|
437
|
+
//# sourceMappingURL=index.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.js","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/auth/index.test.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import ts from 'typescript';
|
|
2
|
+
import type { ConstructFactory, AmplifyFunction } from '@aws-amplify/plugin-types';
|
|
3
|
+
import type { AuthorizationModes, DataLoggingOptions } from '@aws-amplify/backend-data';
|
|
4
|
+
import { RestApiDefinition } from '../../codegen-head/data_definition_fetcher';
|
|
5
|
+
export interface AdditionalAuthProvider {
|
|
6
|
+
authenticationType: 'API_KEY' | 'AWS_IAM' | 'OPENID_CONNECT' | 'AMAZON_COGNITO_USER_POOLS' | 'AWS_LAMBDA';
|
|
7
|
+
lambdaAuthorizerConfig?: {
|
|
8
|
+
authorizerResultTtlInSeconds?: number;
|
|
9
|
+
authorizerUri: string;
|
|
10
|
+
identityValidationExpression?: string;
|
|
11
|
+
};
|
|
12
|
+
openIdConnectConfig?: {
|
|
13
|
+
authTtl?: number;
|
|
14
|
+
clientId?: string;
|
|
15
|
+
iatTtl?: number;
|
|
16
|
+
issuer: string;
|
|
17
|
+
};
|
|
18
|
+
userPoolConfig?: {
|
|
19
|
+
appIdClientRegex?: string;
|
|
20
|
+
awsRegion?: string;
|
|
21
|
+
userPoolId?: string;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
export type DataTableMapping = Record<string, string>;
|
|
25
|
+
export type DataDefinition = {
|
|
26
|
+
tableMappings?: DataTableMapping | undefined;
|
|
27
|
+
schema?: string;
|
|
28
|
+
authorizationModes?: AuthorizationModes;
|
|
29
|
+
additionalAuthProviders?: AdditionalAuthProvider[];
|
|
30
|
+
functions?: Record<string, ConstructFactory<AmplifyFunction>>;
|
|
31
|
+
logging?: DataLoggingOptions;
|
|
32
|
+
restApis?: RestApiDefinition[];
|
|
33
|
+
};
|
|
34
|
+
export declare const generateDataSource: (gen1Env: string, dataDefinition?: DataDefinition) => Promise<ts.NodeArray<ts.Node> | undefined>;
|
|
35
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/commands/gen2-migration/generate/generators/data/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAgC,MAAM,YAAY,CAAC;AAE1D,OAAO,KAAK,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AACnF,OAAO,KAAK,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,MAAM,2BAA2B,CAAC;AACxF,OAAO,EAAE,iBAAiB,EAAE,MAAM,4CAA4C,CAAC;AAC/E,MAAM,WAAW,sBAAsB;IACrC,kBAAkB,EAAE,SAAS,GAAG,SAAS,GAAG,gBAAgB,GAAG,2BAA2B,GAAG,YAAY,CAAC;IAC1G,sBAAsB,CAAC,EAAE;QACvB,4BAA4B,CAAC,EAAE,MAAM,CAAC;QACtC,aAAa,EAAE,MAAM,CAAC;QACtB,4BAA4B,CAAC,EAAE,MAAM,CAAC;KACvC,CAAC;IACF,mBAAmB,CAAC,EAAE;QACpB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,MAAM,CAAC,EAAE,MAAM,CAAC;QAChB,MAAM,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,cAAc,CAAC,EAAE;QACf,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAC1B,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,UAAU,CAAC,EAAE,MAAM,CAAC;KACrB,CAAC;CACH;AAQD,MAAM,MAAM,gBAAgB,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;AAsFtD,MAAM,MAAM,cAAc,GAAG;IAE3B,aAAa,CAAC,EAAE,gBAAgB,GAAG,SAAS,CAAC;IAE7C,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB,kBAAkB,CAAC,EAAE,kBAAkB,CAAC;IAExC,uBAAuB,CAAC,EAAE,sBAAsB,EAAE,CAAC;IAEnD,SAAS,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,gBAAgB,CAAC,eAAe,CAAC,CAAC,CAAC;IAE9D,OAAO,CAAC,EAAE,kBAAkB,CAAC;IAE7B,QAAQ,CAAC,EAAE,iBAAiB,EAAE,CAAC;CAChC,CAAC;AA0BF,eAAO,MAAM,kBAAkB,GAAU,SAAS,MAAM,EAAE,iBAAiB,cAAc,KAAG,OAAO,CAAC,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG,SAAS,CAqOpI,CAAC"}
|