2023-05-26 14:02:53 +00:00
package internal
import (
2023-06-08 16:15:12 +00:00
"context"
2023-10-05 12:48:59 +00:00
"encoding/base64"
2023-06-08 16:15:12 +00:00
"errors"
2023-06-15 10:38:30 +00:00
"io"
2023-06-08 16:15:12 +00:00
"net/http"
"os"
2023-06-27 18:42:29 +00:00
"path"
2023-06-08 16:15:12 +00:00
"path/filepath"
"strings"
2023-05-26 14:02:53 +00:00
"testing"
2023-06-08 16:15:12 +00:00
"github.com/databricks/cli/libs/filer"
"github.com/databricks/databricks-sdk-go"
"github.com/databricks/databricks-sdk-go/apierr"
2023-10-05 12:48:59 +00:00
"github.com/databricks/databricks-sdk-go/service/workspace"
2023-05-26 14:02:53 +00:00
"github.com/stretchr/testify/assert"
2023-06-08 16:15:12 +00:00
"github.com/stretchr/testify/require"
2023-05-26 14:02:53 +00:00
)
func TestAccWorkspaceList ( t * testing . T ) {
t . Log ( GetEnvOrSkipTest ( t , "CLOUD_ENV" ) )
stdout , stderr := RequireSuccessfulRun ( t , "workspace" , "list" , "/" )
outStr := stdout . String ( )
assert . Contains ( t , outStr , "ID" )
assert . Contains ( t , outStr , "Type" )
assert . Contains ( t , outStr , "Language" )
assert . Contains ( t , outStr , "Path" )
assert . Equal ( t , "" , stderr . String ( ) )
}
func TestWorkpaceListErrorWhenNoArguments ( t * testing . T ) {
_ , _ , err := RequireErrorRun ( t , "workspace" , "list" )
assert . Equal ( t , "accepts 1 arg(s), received 0" , err . Error ( ) )
}
2023-06-05 17:38:45 +00:00
func TestWorkpaceGetStatusErrorWhenNoArguments ( t * testing . T ) {
_ , _ , err := RequireErrorRun ( t , "workspace" , "get-status" )
assert . Equal ( t , "accepts 1 arg(s), received 0" , err . Error ( ) )
}
2023-06-08 16:15:12 +00:00
2023-06-27 18:42:29 +00:00
func TestWorkpaceExportPrintsContents ( t * testing . T ) {
t . Log ( GetEnvOrSkipTest ( t , "CLOUD_ENV" ) )
ctx := context . Background ( )
w := databricks . Must ( databricks . NewWorkspaceClient ( ) )
2023-10-03 11:18:55 +00:00
tmpdir := TemporaryWorkspaceDir ( t , w )
2023-06-27 18:42:29 +00:00
f , err := filer . NewWorkspaceFilesClient ( w , tmpdir )
require . NoError ( t , err )
// Write file to workspace
contents := "#!/usr/bin/bash\necho hello, world\n"
err = f . Write ( ctx , "file-a" , strings . NewReader ( contents ) )
require . NoError ( t , err )
// Run export
stdout , stderr := RequireSuccessfulRun ( t , "workspace" , "export" , path . Join ( tmpdir , "file-a" ) )
assert . Equal ( t , contents , stdout . String ( ) )
assert . Equal ( t , "" , stderr . String ( ) )
}
2023-06-08 16:15:12 +00:00
func setupWorkspaceImportExportTest ( t * testing . T ) ( context . Context , filer . Filer , string ) {
t . Log ( GetEnvOrSkipTest ( t , "CLOUD_ENV" ) )
ctx := context . Background ( )
w := databricks . Must ( databricks . NewWorkspaceClient ( ) )
2023-10-03 11:18:55 +00:00
tmpdir := TemporaryWorkspaceDir ( t , w )
2023-06-08 16:15:12 +00:00
f , err := filer . NewWorkspaceFilesClient ( w , tmpdir )
require . NoError ( t , err )
// Check if we can use this API here, skip test if we cannot.
_ , err = f . Read ( ctx , "we_use_this_call_to_test_if_this_api_is_enabled" )
var aerr * apierr . APIError
if errors . As ( err , & aerr ) && aerr . StatusCode == http . StatusBadRequest {
t . Skip ( aerr . Message )
}
return ctx , f , tmpdir
}
2023-06-12 19:03:46 +00:00
func assertLocalFileContents ( t * testing . T , path string , content string ) {
2023-06-08 16:15:12 +00:00
require . FileExists ( t , path )
b , err := os . ReadFile ( path )
require . NoError ( t , err )
assert . Contains ( t , string ( b ) , content )
}
2023-06-12 19:03:46 +00:00
func assertFilerFileContents ( t * testing . T , ctx context . Context , f filer . Filer , path string , content string ) {
r , err := f . Read ( ctx , path )
require . NoError ( t , err )
2023-06-15 10:38:30 +00:00
b , err := io . ReadAll ( r )
2023-06-12 19:03:46 +00:00
require . NoError ( t , err )
assert . Contains ( t , string ( b ) , content )
}
2023-10-05 12:48:59 +00:00
func assertWorkspaceFileType ( t * testing . T , ctx context . Context , f filer . Filer , path string , fileType workspace . ObjectType ) {
info , err := f . Stat ( ctx , path )
require . NoError ( t , err )
assert . Equal ( t , fileType , info . Sys ( ) . ( workspace . ObjectInfo ) . ObjectType )
}
2023-06-08 16:15:12 +00:00
func TestAccExportDir ( t * testing . T ) {
ctx , f , sourceDir := setupWorkspaceImportExportTest ( t )
targetDir := t . TempDir ( )
var err error
// Write test data to the workspace
err = f . Write ( ctx , "file-a" , strings . NewReader ( "abc" ) )
require . NoError ( t , err )
err = f . Write ( ctx , "pyNotebook.py" , strings . NewReader ( "# Databricks notebook source" ) )
require . NoError ( t , err )
err = f . Write ( ctx , "sqlNotebook.sql" , strings . NewReader ( "-- Databricks notebook source" ) )
require . NoError ( t , err )
err = f . Write ( ctx , "scalaNotebook.scala" , strings . NewReader ( "// Databricks notebook source" ) )
require . NoError ( t , err )
err = f . Write ( ctx , "rNotebook.r" , strings . NewReader ( "# Databricks notebook source" ) )
require . NoError ( t , err )
err = f . Write ( ctx , "a/b/c/file-b" , strings . NewReader ( "def" ) , filer . CreateParentDirectories )
require . NoError ( t , err )
// Run Export
RequireSuccessfulRun ( t , "workspace" , "export-dir" , sourceDir , targetDir )
// Assert files were exported
2023-06-12 19:03:46 +00:00
assertLocalFileContents ( t , filepath . Join ( targetDir , "file-a" ) , "abc" )
assertLocalFileContents ( t , filepath . Join ( targetDir , "pyNotebook.py" ) , "# Databricks notebook source" )
assertLocalFileContents ( t , filepath . Join ( targetDir , "sqlNotebook.sql" ) , "-- Databricks notebook source" )
assertLocalFileContents ( t , filepath . Join ( targetDir , "rNotebook.r" ) , "# Databricks notebook source" )
assertLocalFileContents ( t , filepath . Join ( targetDir , "scalaNotebook.scala" ) , "// Databricks notebook source" )
assertLocalFileContents ( t , filepath . Join ( targetDir , "a/b/c/file-b" ) , "def" )
2023-06-08 16:15:12 +00:00
}
func TestAccExportDirDoesNotOverwrite ( t * testing . T ) {
ctx , f , sourceDir := setupWorkspaceImportExportTest ( t )
targetDir := t . TempDir ( )
var err error
// Write remote file
err = f . Write ( ctx , "file-a" , strings . NewReader ( "content from workspace" ) )
require . NoError ( t , err )
// Write local file
err = os . WriteFile ( filepath . Join ( targetDir , "file-a" ) , [ ] byte ( "local content" ) , os . ModePerm )
require . NoError ( t , err )
// Run Export
RequireSuccessfulRun ( t , "workspace" , "export-dir" , sourceDir , targetDir )
// Assert file is not overwritten
2023-06-12 19:03:46 +00:00
assertLocalFileContents ( t , filepath . Join ( targetDir , "file-a" ) , "local content" )
2023-06-08 16:15:12 +00:00
}
func TestAccExportDirWithOverwriteFlag ( t * testing . T ) {
ctx , f , sourceDir := setupWorkspaceImportExportTest ( t )
targetDir := t . TempDir ( )
var err error
// Write remote file
err = f . Write ( ctx , "file-a" , strings . NewReader ( "content from workspace" ) )
require . NoError ( t , err )
// Write local file
err = os . WriteFile ( filepath . Join ( targetDir , "file-a" ) , [ ] byte ( "local content" ) , os . ModePerm )
require . NoError ( t , err )
// Run Export
RequireSuccessfulRun ( t , "workspace" , "export-dir" , sourceDir , targetDir , "--overwrite" )
// Assert file has been overwritten
2023-06-12 19:03:46 +00:00
assertLocalFileContents ( t , filepath . Join ( targetDir , "file-a" ) , "content from workspace" )
}
// TODO: Add assertions on progress logs for workspace import-dir command. https://github.com/databricks/cli/issues/455
func TestAccImportDir ( t * testing . T ) {
ctx , workspaceFiler , targetDir := setupWorkspaceImportExportTest ( t )
RequireSuccessfulRun ( t , "workspace" , "import-dir" , "./testdata/import_dir" , targetDir , "--log-level=debug" )
// Assert files are imported
assertFilerFileContents ( t , ctx , workspaceFiler , "file-a" , "hello, world" )
assertFilerFileContents ( t , ctx , workspaceFiler , "a/b/c/file-b" , "file-in-dir" )
assertFilerFileContents ( t , ctx , workspaceFiler , "pyNotebook" , "# Databricks notebook source\nprint(\"python\")" )
assertFilerFileContents ( t , ctx , workspaceFiler , "sqlNotebook" , "-- Databricks notebook source\nSELECT \"sql\"" )
assertFilerFileContents ( t , ctx , workspaceFiler , "rNotebook" , "# Databricks notebook source\nprint(\"r\")" )
assertFilerFileContents ( t , ctx , workspaceFiler , "scalaNotebook" , "// Databricks notebook source\nprintln(\"scala\")" )
assertFilerFileContents ( t , ctx , workspaceFiler , "jupyterNotebook" , "# Databricks notebook source\nprint(\"jupyter\")" )
}
func TestAccImportDirDoesNotOverwrite ( t * testing . T ) {
ctx , workspaceFiler , targetDir := setupWorkspaceImportExportTest ( t )
var err error
// create preexisting files in the workspace
err = workspaceFiler . Write ( ctx , "file-a" , strings . NewReader ( "old file" ) )
require . NoError ( t , err )
err = workspaceFiler . Write ( ctx , "pyNotebook.py" , strings . NewReader ( "# Databricks notebook source\nprint(\"old notebook\")" ) )
require . NoError ( t , err )
// Assert contents of pre existing files
assertFilerFileContents ( t , ctx , workspaceFiler , "file-a" , "old file" )
assertFilerFileContents ( t , ctx , workspaceFiler , "pyNotebook" , "# Databricks notebook source\nprint(\"old notebook\")" )
RequireSuccessfulRun ( t , "workspace" , "import-dir" , "./testdata/import_dir" , targetDir )
// Assert files are imported
assertFilerFileContents ( t , ctx , workspaceFiler , "a/b/c/file-b" , "file-in-dir" )
assertFilerFileContents ( t , ctx , workspaceFiler , "sqlNotebook" , "-- Databricks notebook source\nSELECT \"sql\"" )
assertFilerFileContents ( t , ctx , workspaceFiler , "rNotebook" , "# Databricks notebook source\nprint(\"r\")" )
assertFilerFileContents ( t , ctx , workspaceFiler , "scalaNotebook" , "// Databricks notebook source\nprintln(\"scala\")" )
assertFilerFileContents ( t , ctx , workspaceFiler , "jupyterNotebook" , "# Databricks notebook source\nprint(\"jupyter\")" )
// Assert pre existing files are not changed
assertFilerFileContents ( t , ctx , workspaceFiler , "file-a" , "old file" )
assertFilerFileContents ( t , ctx , workspaceFiler , "pyNotebook" , "# Databricks notebook source\nprint(\"old notebook\")" )
}
func TestAccImportDirWithOverwriteFlag ( t * testing . T ) {
ctx , workspaceFiler , targetDir := setupWorkspaceImportExportTest ( t )
var err error
// create preexisting files in the workspace
err = workspaceFiler . Write ( ctx , "file-a" , strings . NewReader ( "old file" ) )
require . NoError ( t , err )
err = workspaceFiler . Write ( ctx , "pyNotebook.py" , strings . NewReader ( "# Databricks notebook source\nprint(\"old notebook\")" ) )
require . NoError ( t , err )
// Assert contents of pre existing files
assertFilerFileContents ( t , ctx , workspaceFiler , "file-a" , "old file" )
assertFilerFileContents ( t , ctx , workspaceFiler , "pyNotebook" , "# Databricks notebook source\nprint(\"old notebook\")" )
RequireSuccessfulRun ( t , "workspace" , "import-dir" , "./testdata/import_dir" , targetDir , "--overwrite" )
// Assert files are imported
assertFilerFileContents ( t , ctx , workspaceFiler , "a/b/c/file-b" , "file-in-dir" )
assertFilerFileContents ( t , ctx , workspaceFiler , "sqlNotebook" , "-- Databricks notebook source\nSELECT \"sql\"" )
assertFilerFileContents ( t , ctx , workspaceFiler , "rNotebook" , "# Databricks notebook source\nprint(\"r\")" )
assertFilerFileContents ( t , ctx , workspaceFiler , "scalaNotebook" , "// Databricks notebook source\nprintln(\"scala\")" )
assertFilerFileContents ( t , ctx , workspaceFiler , "jupyterNotebook" , "# Databricks notebook source\nprint(\"jupyter\")" )
// Assert pre existing files are overwritten
assertFilerFileContents ( t , ctx , workspaceFiler , "file-a" , "hello, world" )
assertFilerFileContents ( t , ctx , workspaceFiler , "pyNotebook" , "# Databricks notebook source\nprint(\"python\")" )
2023-06-08 16:15:12 +00:00
}
2023-10-05 12:48:59 +00:00
2023-10-05 13:20:33 +00:00
func TestAccExport ( t * testing . T ) {
ctx , f , sourceDir := setupWorkspaceImportExportTest ( t )
var err error
// Export vanilla file
err = f . Write ( ctx , "file-a" , strings . NewReader ( "abc" ) )
require . NoError ( t , err )
2023-10-06 10:28:18 +00:00
stdout , _ := RequireSuccessfulRun ( t , "workspace" , "export" , path . Join ( sourceDir , "file-a" ) )
2023-10-05 13:20:33 +00:00
b , err := io . ReadAll ( & stdout )
require . NoError ( t , err )
assert . Equal ( t , "abc" , string ( b ) )
// Export python notebook
err = f . Write ( ctx , "pyNotebook.py" , strings . NewReader ( "# Databricks notebook source" ) )
require . NoError ( t , err )
2023-10-06 10:28:18 +00:00
stdout , _ = RequireSuccessfulRun ( t , "workspace" , "export" , path . Join ( sourceDir , "pyNotebook" ) )
2023-10-05 13:20:33 +00:00
b , err = io . ReadAll ( & stdout )
require . NoError ( t , err )
assert . Equal ( t , "# Databricks notebook source\n" , string ( b ) )
// Export python notebook as jupyter
2023-10-06 10:28:18 +00:00
stdout , _ = RequireSuccessfulRun ( t , "workspace" , "export" , path . Join ( sourceDir , "pyNotebook" ) , "--format" , "JUPYTER" )
2023-10-05 13:20:33 +00:00
b , err = io . ReadAll ( & stdout )
require . NoError ( t , err )
assert . Contains ( t , string ( b ) , ` "cells": ` , "jupyter notebooks contain the cells field" )
assert . Contains ( t , string ( b ) , ` "metadata": ` , "jupyter notebooks contain the metadata field" )
}
func TestAccExportWithFileFlag ( t * testing . T ) {
ctx , f , sourceDir := setupWorkspaceImportExportTest ( t )
localTmpDir := t . TempDir ( )
var err error
// Export vanilla file
err = f . Write ( ctx , "file-a" , strings . NewReader ( "abc" ) )
require . NoError ( t , err )
2023-10-06 10:28:18 +00:00
stdout , _ := RequireSuccessfulRun ( t , "workspace" , "export" , path . Join ( sourceDir , "file-a" ) , "--file" , filepath . Join ( localTmpDir , "file.txt" ) )
2023-10-05 13:20:33 +00:00
b , err := io . ReadAll ( & stdout )
require . NoError ( t , err )
// Expect nothing to be printed to stdout
assert . Equal ( t , "" , string ( b ) )
assertLocalFileContents ( t , filepath . Join ( localTmpDir , "file.txt" ) , "abc" )
// Export python notebook
err = f . Write ( ctx , "pyNotebook.py" , strings . NewReader ( "# Databricks notebook source" ) )
require . NoError ( t , err )
2023-10-06 10:28:18 +00:00
stdout , _ = RequireSuccessfulRun ( t , "workspace" , "export" , path . Join ( sourceDir , "pyNotebook" ) , "--file" , filepath . Join ( localTmpDir , "pyNb.py" ) )
2023-10-05 13:20:33 +00:00
b , err = io . ReadAll ( & stdout )
require . NoError ( t , err )
assert . Equal ( t , "" , string ( b ) )
assertLocalFileContents ( t , filepath . Join ( localTmpDir , "pyNb.py" ) , "# Databricks notebook source\n" )
// Export python notebook as jupyter
2023-10-06 10:28:18 +00:00
stdout , _ = RequireSuccessfulRun ( t , "workspace" , "export" , path . Join ( sourceDir , "pyNotebook" ) , "--format" , "JUPYTER" , "--file" , filepath . Join ( localTmpDir , "jupyterNb.ipynb" ) )
2023-10-05 13:20:33 +00:00
b , err = io . ReadAll ( & stdout )
require . NoError ( t , err )
assert . Equal ( t , "" , string ( b ) )
assertLocalFileContents ( t , filepath . Join ( localTmpDir , "jupyterNb.ipynb" ) , ` "cells": ` )
assertLocalFileContents ( t , filepath . Join ( localTmpDir , "jupyterNb.ipynb" ) , ` "metadata": ` )
}
2023-10-05 12:48:59 +00:00
func TestAccImportFileUsingContentFormatSource ( t * testing . T ) {
ctx , workspaceFiler , targetDir := setupWorkspaceImportExportTest ( t )
// Content = `print(1)`. Uploaded as a notebook by default
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "pyScript" ) ,
2023-10-05 12:48:59 +00:00
"--content" , base64 . StdEncoding . EncodeToString ( [ ] byte ( "print(1)" ) ) , "--language=PYTHON" )
assertFilerFileContents ( t , ctx , workspaceFiler , "pyScript" , "print(1)" )
assertWorkspaceFileType ( t , ctx , workspaceFiler , "pyScript" , workspace . ObjectTypeNotebook )
// Import with content = `# Databricks notebook source\nprint(1)`. Uploaded as a notebook with the content just being print(1)
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "pyNb" ) ,
2023-10-05 12:48:59 +00:00
"--content" , base64 . StdEncoding . EncodeToString ( [ ] byte ( "`# Databricks notebook source\nprint(1)" ) ) ,
"--language=PYTHON" )
assertFilerFileContents ( t , ctx , workspaceFiler , "pyNb" , "print(1)" )
assertWorkspaceFileType ( t , ctx , workspaceFiler , "pyNb" , workspace . ObjectTypeNotebook )
}
func TestAccImportFileUsingContentFormatAuto ( t * testing . T ) {
ctx , workspaceFiler , targetDir := setupWorkspaceImportExportTest ( t )
// Content = `# Databricks notebook source\nprint(1)`. Upload as file if path has no extension.
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "py-nb-as-file" ) ,
2023-10-05 12:48:59 +00:00
"--content" , base64 . StdEncoding . EncodeToString ( [ ] byte ( "`# Databricks notebook source\nprint(1)" ) ) , "--format=AUTO" )
assertFilerFileContents ( t , ctx , workspaceFiler , "py-nb-as-file" , "# Databricks notebook source\nprint(1)" )
assertWorkspaceFileType ( t , ctx , workspaceFiler , "py-nb-as-file" , workspace . ObjectTypeFile )
// Content = `# Databricks notebook source\nprint(1)`. Upload as notebook if path has py extension
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "py-nb-as-notebook.py" ) ,
2023-10-05 12:48:59 +00:00
"--content" , base64 . StdEncoding . EncodeToString ( [ ] byte ( "`# Databricks notebook source\nprint(1)" ) ) , "--format=AUTO" )
assertFilerFileContents ( t , ctx , workspaceFiler , "py-nb-as-notebook" , "# Databricks notebook source\nprint(1)" )
assertWorkspaceFileType ( t , ctx , workspaceFiler , "py-nb-as-notebook" , workspace . ObjectTypeNotebook )
// Content = `print(1)`. Upload as file if content is not notebook (even if path has .py extension)
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "not-a-notebook.py" ) , "--content" ,
2023-10-05 12:48:59 +00:00
base64 . StdEncoding . EncodeToString ( [ ] byte ( "print(1)" ) ) , "--format=AUTO" )
assertFilerFileContents ( t , ctx , workspaceFiler , "not-a-notebook.py" , "print(1)" )
assertWorkspaceFileType ( t , ctx , workspaceFiler , "not-a-notebook.py" , workspace . ObjectTypeFile )
}
func TestAccImportFileFormatSource ( t * testing . T ) {
ctx , workspaceFiler , targetDir := setupWorkspaceImportExportTest ( t )
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "pyNotebook" ) , "--file" , "./testdata/import_dir/pyNotebook.py" , "--language=PYTHON" )
2023-10-05 12:48:59 +00:00
assertFilerFileContents ( t , ctx , workspaceFiler , "pyNotebook" , "# Databricks notebook source\nprint(\"python\")" )
assertWorkspaceFileType ( t , ctx , workspaceFiler , "pyNotebook" , workspace . ObjectTypeNotebook )
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "scalaNotebook" ) , "--file" , "./testdata/import_dir/scalaNotebook.scala" , "--language=SCALA" )
2023-10-05 12:48:59 +00:00
assertFilerFileContents ( t , ctx , workspaceFiler , "scalaNotebook" , "// Databricks notebook source\nprintln(\"scala\")" )
assertWorkspaceFileType ( t , ctx , workspaceFiler , "scalaNotebook" , workspace . ObjectTypeNotebook )
2023-10-06 10:28:18 +00:00
_ , _ , err := RequireErrorRun ( t , "workspace" , "import" , path . Join ( targetDir , "scalaNotebook" ) , "--file" , "./testdata/import_dir/scalaNotebook.scala" )
2023-10-05 12:48:59 +00:00
assert . ErrorContains ( t , err , "The zip file may not be valid or may be an unsupported version. Hint: Objects imported using format=SOURCE are expected to be zip encoded databricks source notebook(s) by default. Please specify a language using the --language flag if you are trying to import a single uncompressed notebook" )
}
func TestAccImportFileFormatAuto ( t * testing . T ) {
ctx , workspaceFiler , targetDir := setupWorkspaceImportExportTest ( t )
// Upload as file if path has no extension
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "py-nb-as-file" ) , "--file" , "./testdata/import_dir/pyNotebook.py" , "--format=AUTO" )
2023-10-06 18:09:56 +00:00
assertFilerFileContents ( t , ctx , workspaceFiler , "py-nb-as-file" , "# Databricks notebook source" )
assertFilerFileContents ( t , ctx , workspaceFiler , "py-nb-as-file" , "print(\"python\")" )
2023-10-05 12:48:59 +00:00
assertWorkspaceFileType ( t , ctx , workspaceFiler , "py-nb-as-file" , workspace . ObjectTypeFile )
// Upload as notebook if path has extension
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "py-nb-as-notebook.py" ) , "--file" , "./testdata/import_dir/pyNotebook.py" , "--format=AUTO" )
2023-10-05 12:48:59 +00:00
assertFilerFileContents ( t , ctx , workspaceFiler , "py-nb-as-notebook" , "# Databricks notebook source\nprint(\"python\")" )
assertWorkspaceFileType ( t , ctx , workspaceFiler , "py-nb-as-notebook" , workspace . ObjectTypeNotebook )
// Upload as file if content is not notebook (even if path has .py extension)
2023-10-06 10:28:18 +00:00
RequireSuccessfulRun ( t , "workspace" , "import" , path . Join ( targetDir , "not-a-notebook.py" ) , "--file" , "./testdata/import_dir/file-a" , "--format=AUTO" )
2023-10-06 18:09:56 +00:00
assertFilerFileContents ( t , ctx , workspaceFiler , "not-a-notebook.py" , "hello, world" )
2023-10-05 12:48:59 +00:00
assertWorkspaceFileType ( t , ctx , workspaceFiler , "not-a-notebook.py" , workspace . ObjectTypeFile )
}