Sha256: b0c3cfd60d4c5c24611f4f092a66d5f358f71b56d9eacaeb882919dab6685657

Contents?: true

Size: 1.64 KB

Versions: 1

Compression:

Stored size: 1.64 KB

Contents

# Author:: Couchbase <info@couchbase.com>
# Copyright:: 2011, 2012 Couchbase, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require File.join(File.dirname(__FILE__), 'setup')

class TestCas < MiniTest::Unit::TestCase

  def setup
    @mock = start_mock
  end

  def teardown
    stop_mock(@mock)
  end

  def test_compare_and_swap
    connection = Couchbase.new(:port => @mock.port,
                               :default_format => :document)
    connection.set(test_id, {"bar" => 1})
    connection.cas(test_id) do |val|
      val["baz"] = 2
      val
    end
    val = connection.get(test_id)
    expected = {"bar" => 1, "baz" => 2}
    assert_equal expected, val
  end

  def test_compare_and_swap_async
    connection = Couchbase.new(:port => @mock.port,
                               :default_format => :document)
    connection.set(test_id, {"bar" => 1})
    connection.run do |conn|
      conn.cas(test_id) do |ret|
        new_val = ret.value
        new_val["baz"] = 2
        new_val
      end
    end
    val = connection.get(test_id)
    expected = {"bar" => 1, "baz" => 2}
    assert_equal expected, val
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
couchbase-1.0.0 test/test_cas.rb