Welcome to mirror list, hosted at ThFree Co, Russian Federation.

client_spec.rb « click_house « spec « click_house-client « gems - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 883199198badbb1329ebc65ffb5648ef78b68c92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# frozen_string_literal: true

RSpec.describe ClickHouse::Client do
  describe '#select' do
    # Assuming we have a DB table with the following schema
    #
    # CREATE TABLE issues (
    #   `id` UInt64,
    #   `title` String DEFAULT '',
    #   `description` Nullable(String),
    #   `created_at` DateTime64(6, 'UTC') DEFAULT now(),
    #   `updated_at` DateTime64(6, 'UTC') DEFAULT now()
    # )
    # ENGINE = ReplacingMergeTree(updated_at)
    # ORDER BY (id)

    let(:query_result_fixture) { File.expand_path('../fixtures/query_result.json', __dir__) }

    let(:database_config) do
      {
        database: 'test_db',
        url: 'http://localhost:3333',
        username: 'user',
        password: 'pass',
        variables: {
          join_use_nulls: 1
        }
      }
    end

    let(:configuration) do
      ClickHouse::Client::Configuration.new.tap do |config|
        config.register_database(:test_db, **database_config)
        config.http_post_proc = ->(_url, _headers, _query) {
          body = File.read(query_result_fixture)
          ClickHouse::Client::Response.new(body, 200)
        }
      end
    end

    it 'parses the results and returns the data as array of hashes' do
      result = described_class.select('SELECT * FROM issues', :test_db, configuration)

      timestamp1 = ActiveSupport::TimeZone["UTC"].parse('2023-06-21 13:33:44')
      timestamp2 = ActiveSupport::TimeZone["UTC"].parse('2023-06-21 13:33:50')
      timestamp3 = ActiveSupport::TimeZone["UTC"].parse('2023-06-21 13:33:40')

      expect(result).to eq([
        {
          'id' => 2,
          'title' => 'Title 2',
          'description' => 'description',
          'created_at' => timestamp1,
          'updated_at' => timestamp1
        },
        {
          'id' => 3,
          'title' => 'Title 3',
          'description' => nil,
          'created_at' => timestamp2,
          'updated_at' => timestamp2
        },
        {
          'id' => 1,
          'title' => 'Title 1',
          'description' => 'description',
          'created_at' => timestamp3,
          'updated_at' => timestamp3
        }
      ])
    end

    context 'when the DB is not configured' do
      it 'raises erro' do
        expect do
          described_class.select('SELECT * FROM issues', :different_db, configuration)
        end.to raise_error(ClickHouse::Client::ConfigurationError, /not configured/)
      end
    end

    context 'when error response is returned' do
      let(:configuration) do
        ClickHouse::Client::Configuration.new.tap do |config|
          config.register_database(:test_db, **database_config)
          config.http_post_proc = ->(_url, _headers, _query) {
            ClickHouse::Client::Response.new('some error', 404)
          }
        end
      end

      it 'raises error' do
        expect do
          described_class.select('SELECT * FROM issues', :test_db, configuration)
        end.to raise_error(ClickHouse::Client::DatabaseError, 'some error')
      end
    end
  end
end