Sha256: 34857f071904dcb955f15d40f0f39c3843971134a1c6a49a6b808c93c730ae0a
Contents?: true
Size: 2 KB
Versions: 21
Compression:
Stored size: 2 KB
Contents
# Copyright 2020 Google LLC # # Use of this source code is governed by an MIT-style # license that can be found in the LICENSE file or at # https://opensource.org/licenses/MIT. # frozen_string_literal: true require "test_helper" module ActiveRecord module Type class StringTest < SpannerAdapter::TestCase include SpannerAdapter::Types::TestHelper def test_convert_to_sql_type assert_equal "STRING(MAX)", connection.type_to_sql(:string) assert_equal "STRING(1024)", connection.type_to_sql(:string, limit: 1024) end def test_set_string_in_create description = "a" * 1000 name = "Test name" record = TestTypeModel.create(description: description, name: name) record.reload assert_equal description, record.description assert_equal name, record.name end def test_set_string_with_max_limit_in_create str = "a" * 256 assert_raise(ActiveRecord::StatementInvalid) { TestTypeModel.create(name: str) } end def test_escape_special_charaters_and_save str = [ "Newline \n", "`Backtick`", "'Quote'", "Bell \a", "Backspace \b", "Formfeed \f", "Carriage Return \r", "Tab \t", "Vertical Tab \v", "Backslash \\", "Question Mark \?", "Double Quote \"", ].join (" ") record = TestTypeModel.new(description: str) assert_equal str, record.description record.save! assert_equal str, record.description record.reload assert_equal str, record.description end def test_save_special_charaters str = "Hello Seocial Chars : € à ö ¿ © 😎" record = TestTypeModel.new(description: str) assert_equal str, record.description record.save! assert_equal str, record.description record.reload assert_equal str, record.description end end end end
Version data entries
21 entries across 21 versions & 1 rubygems