Sha256: c400fc935586612d49b951a2507aa3499817d907eca69a932f278890609df6d2

Contents?: true

Size: 1.64 KB

Versions: 21

Compression:

Stored size: 1.64 KB

Contents

require 'logger'
require 'tempfile'

require 'helper'
require 'gooddata/model'
require 'gooddata/command'

GoodData.logger = Logger.new(STDOUT)

class TestModel < Test::Unit::TestCase
  FILE = [
    [ "cp", "a1", "a2", "f1", "f2" ],
    [ 1, "a1.1", "a2.1", "0", "5" ],
    [ 2, "a1.2", "a2.1", nil, 10 ],
    [ 3, "a1.2", "a2.2", 1, nil ],
    [ 4, "a1.3", "a2.2", 0, 0 ]
  ]
  COLUMNS = [
      { 'type' => 'CONNECTION_POINT', 'name' => 'cp', 'title' => 'CP', 'folder' => 'test' },
      { 'type' => 'ATTRIBUTE', 'name' => 'a1', 'title' => 'A1', 'folder' => 'test' },
      { 'type' => 'ATTRIBUTE', 'name' => 'a2', 'title' => 'A2', 'folder' => 'test' },
      { 'type' => 'FACT', 'name' => 'f1', 'title' => 'F1', 'folder' => 'test' },
      { 'type' => 'FACT', 'name' => 'f2', 'title' => 'F2', 'folder' => 'test' },
    ]
  SCHEMA = GoodData::Model::Schema.new 'title' => 'test', 'columns' => COLUMNS

  context "GoodData model tools" do
    # Initialize a GoodData connection using the credential
    # stored in ~/.gooddata
    #
    # And create a temporary CSV file to test the upload
    setup do
      GoodData::Command::connect
      @file = Tempfile.open 'test_csv'
      FasterCSV.open @file.path, 'w' do |csv|
        FILE.each { |row| csv << row }
      end
      @project = GoodData::Project.create :title => "gooddata-ruby test #{Time.now.to_i}"
    end

    teardown do
      @file.unlink
      @project.delete
    end

    should "upload CSV in a full mode" do
      @project.add_dataset SCHEMA
      assert_equal 1, @project.datasets.size
      assert_equal "test", @project.datasets.first.title
      @project.upload @file.path, SCHEMA, "FULL"
    end
  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
gooddata-0.6.0.pre11 test/test_upload.rb
gooddata-0.6.0.pre10 test/test_upload.rb
gooddata-0.6.0.pre9 test/test_upload.rb
gooddata-0.6.0.pre8 test/test_upload.rb
gooddata-0.6.0.pre7 test/test_upload.rb
gooddata-0.6.0.pre6 test/test_upload.rb
gooddata-0.6.0.pre5 test/test_upload.rb
gooddata-0.6.0.pre4 test/test_upload.rb
gooddata-0.6.0.pre3 test/test_upload.rb
gooddata-0.6.0.pre2 test/test_upload.rb
gooddata-0.5.16 test/test_upload.rb
gooddata-0.5.15 test/test_upload.rb
gooddata-0.5.14 test/test_upload.rb
gooddata-0.5.13 test/test_upload.rb
gooddata-0.5.12 test/test_upload.rb
gooddata-0.5.11 test/test_upload.rb
gooddata-0.5.10 test/test_upload.rb
gooddata-0.5.9 test/test_upload.rb
gooddata-0.5.8 test/test_upload.rb
gooddata-0.5.7 test/test_upload.rb