16

私は iPhone SDK を試していて、Dr. Nic の rbiPhoneTest プロジェクトで TDD を行っています。iPhone/Cocoa 用のこのフレームワークまたはその他のテスト フレームワークを使用して、成功した人は何人いるのでしょうか? さらに重要なのは、独自のバイナリ リクエスト/レスポンス プロトコルをアサートする最善の方法を知りたいということです。アイデアは、ネットワーク経由でバイナリ リクエストを送信し、バイナリ レスポンスを受信することです。リクエストとレスポンスは、byte and'ing and or'ing を使用して作成されます。ゴールデン コピー パターンを使用してリクエストをテストしています。これが私がこれまでに持っているものです。私はObjective CとRubyの両方に慣れていないので、笑わないでください。

require File.dirname(__FILE__) + '/test_helper'
require 'fileutils'
require 'io'

require "MyModel.bundle"
OSX::ns_import :MyModel

module MyTestExtensions
  def is_absolute_path(path)
    return /^\/.*/.match(path)
  end

  def parent_directory(file)
    dir = file
    if(! is_absolute_path(dir))
      dir = File.expand_path(dir)
    end
    dir = File.dirname(dir)
    assert is_absolute_path(dir), "Expecting an absolute path with #{dir}"
    return dir
  end

  def assert_NSData_contains_bytes_from_file(file, data)
    assert_not_nil data, "Data should not be nil."
    assert data.bytes, "data should have bytes"
    data.length.times { |i|
      expected = file.getc
      assert_not_nil expected, "Expected only #{i} bytes. Actual data contains more."
      actual = data.bytes.int8_at(i)
      assert_equal expected, actual, "Bytes should be equal at offset #{i} expected #{expected.chr} but was #{actual.chr}"
    }
    expected = file.getc
    raise AssertionFailedError, "Expecting #{expected.chr} at offset #{data.length}" unless expected == nil
  end

end

class TestMyModel < Test::Unit::TestCase
include OSX
include MyTestExtensions

  def this_files_dir
    return parent_directory(__FILE__)
  end

  def setup
    @expectedReq = File.new("#{this_files_dir}/ExpectedMyReq")
    # @expectedReq = File.new("#{this_files_dir}/hello.txt")
    assert File.exist?("#{this_files_dir}/ExpectedMyReq"), "The file [#{@expectedReq.path}] should exist."
  end

  def test_my_model_class_exists
    MyModel
  end

  def test_can_init_instance
    assert MyModel.instancesRespondToSelector(:init), "MyModel Should define :init"
  end

  def test_my_model_can_request_my_data
    myModel = MyModel.alloc.init
    data = myModel.requestMyData 'Some query text'
    assert_NSData_contains_bytes_from_file @expectedReq, data
  end

end
4

2 に答える 2

11

Ruby やバイナリ プロトコルについてはよくわかりませんが、iPhone での単体テストに興味がある場合は、Google Toolbox for Macを調べてみてください。OpenGL ES アプリケーションを使用してテストを行うと、大きな成功を収めています。

于 2008-10-12T18:43:22.443 に答える
6

クリフ、長期的には、純粋な ObjC TDD ツールに時間を投資するのが最善です。私は fmdb-migration-manager で自分の rbiphonetest ライブラリをうまく使用しましたが、その有用性はおそらくライブラリなどに限定されています。いつの日か、RubyCocoa が Intel UIKit ライブラリに対して構築され、非常に便利で頑丈なものになることを願っています。

于 2008-11-10T12:44:40.083 に答える