summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_cli/test/ctl/eval_file_command_test.exs
blob: 74cb272f985d378f86c8e7f6fa8c4f915eb3573f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
## This Source Code Form is subject to the terms of the Mozilla Public
## License, v. 2.0. If a copy of the MPL was not distributed with this
## file, You can obtain one at https://mozilla.org/MPL/2.0/.
##
## Copyright (c) 2007-2020 VMware, Inc. or its affiliates.  All rights reserved.


defmodule EvalFileCommandTest do
  use ExUnit.Case, async: false
  import TestHelper

  @command RabbitMQ.CLI.Ctl.Commands.EvalFileCommand

  setup_all do
    RabbitMQ.CLI.Core.Distribution.start()
    :ok
  end

  setup _ do
    {:ok, opts: %{node: get_rabbit_hostname()}}
  end

  test "validate: providing no arguments fails validation" do
    # expression is expected to be provided via standard input
    assert @command.validate([], %{}) == {:validation_failure, :not_enough_args}
  end

  test "validate: empty file path fails validation" do
    assert @command.validate([""], %{}) == {:validation_failure, "File path must not be blank"}
  end

  test "validate: path to a non-existent file fails validation" do
    path = "/tmp/rabbitmq/cli-tests/12937293782368263726.lolz.escript"
    assert @command.validate([path], %{}) == {:validation_failure, "File #{path} does not exist"}
  end

  test "run: request to a non-existent node returns a badrpc", _context do
    opts = %{node: :jake@thedog, timeout: 200}

    assert match?({:badrpc, _}, @command.run([valid_file_path()], opts))
  end

  test "run: evaluates expressions in the file on the target server node", context do
    {:ok, apps} = @command.run([loaded_applications_file_path()], context[:opts])
    assert is_list(apps)
    assert List.keymember?(apps, :rabbit, 0)
  end

  test "run: returns evaluation result", context do
    assert {:ok, 2} == @command.run([valid_file_path()], context[:opts])
  end

  test "run: reports invalid syntax errors", context do
    assert match?({:error, _}, @command.run([invalid_file_path()], context[:opts]))
  end

  #
  # Implementation
  #

  defp valid_file_path() do
    Path.join([File.cwd!(), "test", "fixtures", "files", "valid_erl_expression.escript"])
  end

  defp invalid_file_path() do
    Path.join([File.cwd!(), "test", "fixtures", "files", "invalid_erl_expression.escript"])
  end

  defp loaded_applications_file_path() do
    Path.join([File.cwd!(), "test", "fixtures", "files", "loaded_applications.escript"])
  end
end