2017-10-24 13 views
2

私たちは、CIをTravisからHerokuに移植しようとしています。テストは、ローカルとTravisの両方で行われますが、Herokuでは、デバッグが困難なerlangエラーが発生しています。Heroku CIでPhoenixアプリケーションがクラッシュする

すべてのエラーは、AWS S3リクエストを模擬しながらElxxir Mockモジュールを使用したテストから発生しているようです。ここで

は、例のテストです:

test "put_object failure function" do 
    with_mock ExAws, [request!: fn(_) -> %{status_code: 500} end] do 
     res = S3.put_object("unique.png", "binary") 
     assert res == {:error, "error uploading to S3"} 
    end 
    end 

そして、プット・オブジェクトは単純です:

def put_object(unique, image_binary) do 
    bucket = System.get_env("BUCKET_NAME") 

    res = ExAws.S3.put_object(bucket, unique, image_binary) 
    |> ExAws.request! 

    case res do 
     %{status_code: 200} -> 
     {:ok, image_url(unique, bucket)} 
     _ -> 
     {:error, "error uploading to S3"} 
    end 
    end 

は、だから私は間違って何が起こっているかあまりわかりません。それをソート

 8) test put_object failure function (Engine.S3Test) 
     test/controllers/s3_test.exs:34 
     ** (EXIT from #PID<0.1043.0>) 
{:compile_forms, {:error, [{[], [{:none, :compile, {:crash, :lint_module, {:badarg, [{:erlang, :atom_to_list, [[Application]], []}, 
{:erl_lint, :is_latin1_name, 1, [file: 'erl_lint.erl', line: 3050]}, {:erl_lint, :check_module_name, 3, [file: 'erl_lint.erl', line: 3043]}, 
{:erl_lint, :behaviour_callbacks, 3, [file: 'erl_lint.erl', line: 968]}, {:erl_lint, :all_behaviour_callbacks, 3, [file: 'erl_lint.erl', line: 929]}, 
{:erl_lint, :behaviour_check, 2, [file: 'erl_lint.erl', line: 916]}, {:erl_lint, :post_traversal_check, 2, [file: 'erl_lint.erl', line: 888]}, {:erl_lint, :module, 3, [file: 'erl_lint.erl', line: 534]}, {:compile, :lint_module, 2, [file: 'compile.erl', line: 1109]}, {:compile, :"-internal_comp/5-anonymous-1-", 3, [file: 'compile.erl', line: 342]}, {:compile, :fold_comp, 4, [file: 'compile.erl', line: 369]}, {:compile, :internal_comp, 5, [file: 'compile.erl', line: 353]}, 
{:compile, :"-do_compile/2-anonymous-0-", 2, [file: 'compile.erl', line: 177]}, {:compile, :"-do_compile/2-anonymous-1-", 1, [file: 'compile.erl', line: 190]}]}}}]}], []}} 
+1

がhttpsのようになります:

HerokuのCIからのエラーはここにある// github.com/jjh42/mock/issues/66。最新版のモック/メックにいますか? – Dogbert

+0

それは素晴らしい場所です!それを今見てみましょう! – JMurphyWeb

+0

それをソートしました。 mockバージョンを0.3.1に更新する - '{:mock、"〜> 0.3.1 "、::test}' ありがとう@Dogbert – JMurphyWeb

答えて

0

0.3.1へDogbertの答え@here

更新モックバージョンのおかげで - {:mock, "~> 0.3.1", only: :test}

関連する問題