Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriele Ghio <gabriele.ghio@secomind.com>
  • Loading branch information
shinnokdisengir committed Oct 2, 2024
1 parent 534c156 commit 005b275
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions tools/astarte_dev_tool/test/realm_test.exs
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
#
# This file is part of Astarte.
#
# Copyright 2024 SECO Mind Srl
#
# 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.
#

defmodule AstarteDevToolTest.Realm do
use ExUnit.Case
alias AstarteDevTool.Commands.Realm

@nodes [
{"localhost", "9042"}
]

@realm "realm1"

@doctest false
@moduletag :realm
describe "unit test" do
test "1" do
assert true
end

test "2" do
assert :ok = Realm.Create.exec(@nodes, @realm)
end
end

describe "mix tasks" do
test "1" do
# {:ok, private} = Mix.Tasks.AstarteDevTool.Auth.Keys.run([])
# {:ok, public} = Mix.Tasks.AstarteDevTool.Auth.Keys.run(["--", private])
assert 1
end
end
end

0 comments on commit 005b275

Please sign in to comment.