Sha256: 6ff05e4acd86efabc7064d6d136dd8303ac76b0fa8b870db5f84f2dd649bad0e

Contents?: true

Size: 1.93 KB

Versions: 15

Compression:

Stored size: 1.93 KB

Contents

#
#  rhom_spec.rb
#  rhodes
#
#  Copyright (C) 2008 Rhomobile, Inc. All rights reserved.
#
#  This program is free software: you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
require 'spec/spec_helper'

describe "Rhom" do
  
  CLIENT_ID = '67320d31-e42e-4156-af91-5d9bd7175b08'

  it_should_behave_like "rhom initializer"
  
  it "should get client_id" do
    Rhom::Rhom::client_id.should == CLIENT_ID
  end
  
#  it "should perform full reset of database" do
#    Rhom::Rhom::database_full_reset
#    verify_reset
#  end
  
#  it "should perform full database reset and logout" do
#    Rhom::Rhom::database_full_reset_and_logout
#    verify_reset
#  end
  
#  it "should call select_from_table with select array" do
#    sel_arr = ['name','industry']
#    @res = ::Rho::RHO.get_user_db().select_from_table(Account.get_values_table_name(), '*', {'object' => '44e804f2-4933-4e20-271c-48fcecd9450d'}, nil, sel_arr)
#    @res.length.should == 2
#  end
  
  def verify_reset
    ::Rho::RHO.get_user_db().select_from_table('object_values','*').length.should == 0
    res = ::Rho::RHO.get_user_db().select_from_table('client_info','*')
    res.length.should == 1
    res[0]['reset'].should == 1
    res[0]['client_id'].should == CLIENT_ID
    
    ::Rho::RHO.get_user_db().select_from_table('sources','*').each do |source|
      source['token'].should == 0
    end
    Rhom::Rhom::client_id.should == CLIENT_ID
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
rhodes-2.0.3 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.2 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.rc2 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.rc1 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta11 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta10 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta9 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta8 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta7 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta6 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta4 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta3 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta2 spec/framework_spec/app/spec/rhom_spec.rb
rhodes-2.0.0.beta1 spec/framework_spec/app/spec/rhom_spec.rb