plesk_kit 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. checksums.yaml +15 -0
  2. data/app/assets/javascripts/plesk_kit/application.js +15 -0
  3. data/app/assets/javascripts/plesk_kit/customer_accounts.js +2 -0
  4. data/app/assets/javascripts/plesk_kit/customers.js +2 -0
  5. data/app/assets/javascripts/plesk_kit/reseller_accounts.js +2 -0
  6. data/app/assets/javascripts/plesk_kit/servers.js +2 -0
  7. data/app/assets/javascripts/plesk_kit/subscriptions.js +2 -0
  8. data/app/assets/stylesheets/plesk_kit/application.css +13 -0
  9. data/app/assets/stylesheets/plesk_kit/customer_accounts.css +4 -0
  10. data/app/assets/stylesheets/plesk_kit/customers.css +4 -0
  11. data/app/assets/stylesheets/plesk_kit/reseller_accounts.css +4 -0
  12. data/app/assets/stylesheets/plesk_kit/servers.css +4 -0
  13. data/app/assets/stylesheets/plesk_kit/subscriptions.css +4 -0
  14. data/app/assets/stylesheets/scaffold.css +56 -0
  15. data/app/controllers/plesk_kit/application_controller.rb +4 -0
  16. data/app/controllers/plesk_kit/customer_accounts_controller.rb +87 -0
  17. data/app/controllers/plesk_kit/reseller_accounts_controller.rb +87 -0
  18. data/app/controllers/plesk_kit/servers_controller.rb +87 -0
  19. data/app/controllers/plesk_kit/subscriptions_controller.rb +87 -0
  20. data/app/helpers/plesk_kit/application_helper.rb +4 -0
  21. data/app/helpers/plesk_kit/customer_accounts_helper.rb +4 -0
  22. data/app/helpers/plesk_kit/reseller_accounts_helper.rb +4 -0
  23. data/app/helpers/plesk_kit/servers_helper.rb +4 -0
  24. data/app/helpers/plesk_kit/subscriptions_helper.rb +4 -0
  25. data/app/models/plesk_kit/client.rb +25 -0
  26. data/app/models/plesk_kit/communicator.rb +55 -0
  27. data/app/models/plesk_kit/customer_account.rb +70 -0
  28. data/app/models/plesk_kit/reseller_account.rb +72 -0
  29. data/app/models/plesk_kit/server.rb +30 -0
  30. data/app/models/plesk_kit/service_plan.rb +359 -0
  31. data/app/models/plesk_kit/subscription.rb +95 -0
  32. data/app/views/layouts/plesk_kit/application.html.erb +14 -0
  33. data/app/views/plesk_kit/customer_accounts/_form.html.erb +33 -0
  34. data/app/views/plesk_kit/customer_accounts/edit.html.erb +6 -0
  35. data/app/views/plesk_kit/customer_accounts/index.html.erb +29 -0
  36. data/app/views/plesk_kit/customer_accounts/new.html.erb +5 -0
  37. data/app/views/plesk_kit/customer_accounts/show.html.erb +25 -0
  38. data/app/views/plesk_kit/reseller_accounts/_form.html.erb +33 -0
  39. data/app/views/plesk_kit/reseller_accounts/edit.html.erb +6 -0
  40. data/app/views/plesk_kit/reseller_accounts/index.html.erb +29 -0
  41. data/app/views/plesk_kit/reseller_accounts/new.html.erb +5 -0
  42. data/app/views/plesk_kit/reseller_accounts/show.html.erb +25 -0
  43. data/app/views/plesk_kit/servers/_form.html.erb +37 -0
  44. data/app/views/plesk_kit/servers/edit.html.erb +6 -0
  45. data/app/views/plesk_kit/servers/index.html.erb +31 -0
  46. data/app/views/plesk_kit/servers/new.html.erb +5 -0
  47. data/app/views/plesk_kit/servers/show.html.erb +30 -0
  48. data/app/views/plesk_kit/subscriptions/_form.html.erb +49 -0
  49. data/app/views/plesk_kit/subscriptions/edit.html.erb +6 -0
  50. data/app/views/plesk_kit/subscriptions/index.html.erb +33 -0
  51. data/app/views/plesk_kit/subscriptions/new.html.erb +5 -0
  52. data/app/views/plesk_kit/subscriptions/show.html.erb +35 -0
  53. data/config/routes.rb +8 -0
  54. data/db/migrate/20130906033658_create_plesk_kit_customer_accounts.rb +14 -0
  55. data/db/migrate/20130906033745_create_plesk_kit_reseller_accounts.rb +15 -0
  56. data/db/migrate/20130906034225_create_plesk_kit_subscriptions.rb +16 -0
  57. data/db/migrate/20130906040817_create_plesk_kit_servers.rb +13 -0
  58. data/db/migrate/20130917012645_create_plesk_kit_service_plans.rb +13 -0
  59. data/db/migrate/20130925025125_add_platform_to_customer_account.rb +5 -0
  60. data/db/migrate/20130925025132_add_platform_to_reseller_account.rb +5 -0
  61. data/lib/plesk_kit/engine.rb +23 -0
  62. data/lib/plesk_kit/version.rb +3 -0
  63. data/lib/plesk_kit.rb +4 -0
  64. data/lib/tasks/plesk_kit_tasks.rake +4 -0
  65. data/test/dummy/README.rdoc +261 -0
  66. data/test/dummy/Rakefile +7 -0
  67. data/test/dummy/app/assets/javascripts/application.js +15 -0
  68. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  69. data/test/dummy/app/controllers/application_controller.rb +3 -0
  70. data/test/dummy/app/helpers/application_helper.rb +2 -0
  71. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  72. data/test/dummy/config/application.rb +59 -0
  73. data/test/dummy/config/boot.rb +10 -0
  74. data/test/dummy/config/database.yml +25 -0
  75. data/test/dummy/config/environment.rb +5 -0
  76. data/test/dummy/config/environments/development.rb +37 -0
  77. data/test/dummy/config/environments/production.rb +67 -0
  78. data/test/dummy/config/environments/test.rb +37 -0
  79. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  80. data/test/dummy/config/initializers/inflections.rb +15 -0
  81. data/test/dummy/config/initializers/mime_types.rb +5 -0
  82. data/test/dummy/config/initializers/secret_token.rb +7 -0
  83. data/test/dummy/config/initializers/session_store.rb +8 -0
  84. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  85. data/test/dummy/config/locales/en.yml +5 -0
  86. data/test/dummy/config/routes.rb +4 -0
  87. data/test/dummy/config.ru +4 -0
  88. data/test/dummy/db/development.sqlite3 +0 -0
  89. data/test/dummy/db/migrate/20130906035255_create_plesk_kit_customer_accounts.plesk_kit.rb +13 -0
  90. data/test/dummy/db/migrate/20130906035256_create_plesk_kit_reseller_accounts.plesk_kit.rb +13 -0
  91. data/test/dummy/db/migrate/20130906035257_create_plesk_kit_subscriptions.plesk_kit.rb +17 -0
  92. data/test/dummy/db/migrate/20130906040830_create_plesk_kit_servers.plesk_kit.rb +14 -0
  93. data/test/dummy/db/migrate/20130917020158_create_plesk_kit_service_plans.plesk_kit.rb +14 -0
  94. data/test/dummy/db/schema.rb +82 -0
  95. data/test/dummy/db/test.sqlite3 +0 -0
  96. data/test/dummy/log/development.log +9422 -0
  97. data/test/dummy/public/404.html +26 -0
  98. data/test/dummy/public/422.html +26 -0
  99. data/test/dummy/public/500.html +25 -0
  100. data/test/dummy/public/favicon.ico +0 -0
  101. data/test/dummy/script/rails +6 -0
  102. data/test/dummy/tmp/cache/assets/C5D/AF0/sprockets%2Faa100860897bd469c74972020e9d6966 +0 -0
  103. data/test/dummy/tmp/cache/assets/C83/800/sprockets%2F0892f1bdb69d260331b7b414298969c1 +0 -0
  104. data/test/dummy/tmp/cache/assets/C8A/850/sprockets%2F8729404d8f18dcc24e0523d37801589e +0 -0
  105. data/test/dummy/tmp/cache/assets/CC2/EF0/sprockets%2F756af5df20241589c464741d971fd7d8 +0 -0
  106. data/test/dummy/tmp/cache/assets/CC4/B50/sprockets%2F34e848818d05961fdc8c6c275e16629b +0 -0
  107. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  108. data/test/dummy/tmp/cache/assets/CE0/340/sprockets%2F4b6f8f760b2a1789f60289271d20c0be +0 -0
  109. data/test/dummy/tmp/cache/assets/CED/DE0/sprockets%2F18595c4734c4d7582dee3ae35b079a49 +0 -0
  110. data/test/dummy/tmp/cache/assets/CEE/F00/sprockets%2F891ac2c44b3be23865e990924a995fe2 +0 -0
  111. data/test/dummy/tmp/cache/assets/D10/EC0/sprockets%2F73e40114523e8419fcd0efa71d597c5d +0 -0
  112. data/test/dummy/tmp/cache/assets/D11/AE0/sprockets%2Fa1a95d724723a8f11e9037e8d2b28a8f +0 -0
  113. data/test/dummy/tmp/cache/assets/D13/380/sprockets%2F354af7b9709615f6f10e77d7e1b2da15 +0 -0
  114. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  115. data/test/dummy/tmp/cache/assets/D33/4D0/sprockets%2F14f2359cdf393c5e0b6401e233bb2ef5 +0 -0
  116. data/test/dummy/tmp/cache/assets/D3B/BF0/sprockets%2F3b7fb545a51edee1b772b818b2424d56 +0 -0
  117. data/test/dummy/tmp/cache/assets/D3C/B20/sprockets%2F1927fcaeaf1d200dab53e55b86526939 +0 -0
  118. data/test/dummy/tmp/cache/assets/D3F/2C0/sprockets%2F1ada6cc19aa84bf00164875127ef689e +0 -0
  119. data/test/dummy/tmp/cache/assets/D44/140/sprockets%2F341e589bb22dea2848665b989b2ba3ea +0 -0
  120. data/test/dummy/tmp/cache/assets/D4A/700/sprockets%2Fd56d83b8bbc98f0ce23f6263ff796020 +0 -0
  121. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  122. data/test/dummy/tmp/cache/assets/D51/190/sprockets%2F2a28b96857a9e16a74ee9dde52903dc7 +0 -0
  123. data/test/dummy/tmp/cache/assets/D51/610/sprockets%2F34de6f511191ffa00431d50cb5b31eac +0 -0
  124. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  125. data/test/dummy/tmp/cache/assets/D62/7B0/sprockets%2F39cdc1f2f8021136f2034ac5a9dab7f6 +0 -0
  126. data/test/dummy/tmp/cache/assets/D78/5D0/sprockets%2Feb7a1f999039a6136d9cfe25222fdcd5 +0 -0
  127. data/test/dummy/tmp/cache/assets/D7A/A30/sprockets%2F7e54a37cfb268f56b4c49b9f02029bff +0 -0
  128. data/test/dummy/tmp/cache/assets/D98/A30/sprockets%2Fd3cd57a8fade5aef376036123c5e11d6 +0 -0
  129. data/test/dummy/tmp/cache/assets/DA6/B80/sprockets%2F3fea63c0c7e19aae37d6037cd9d987e0 +0 -0
  130. data/test/dummy/tmp/cache/assets/DBA/730/sprockets%2F182cd97bf96da9ad7f037dcda77e8965 +0 -0
  131. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  132. data/test/dummy/tmp/cache/assets/DF9/B80/sprockets%2Fe87d27fca0c65097c5b652becc1eec0b +0 -0
  133. data/test/dummy/tmp/cache/assets/DFA/E90/sprockets%2F1fc47d21f6a426ae1e5d7b1dc9b39dbf +0 -0
  134. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  135. data/test/dummy/tmp/cache/assets/E28/3B0/sprockets%2Fce7fac4e9b4c46afa942e091b54c6aab +0 -0
  136. data/test/dummy/tmp/cache/assets/E3D/360/sprockets%2F19c6fbcf6aaed23dce100b1c1b2b0b8c +0 -0
  137. data/test/dummy/tmp/cache/assets/E89/270/sprockets%2F1bf1ee2ecfe1c679faf4002f4ea8bece +0 -0
  138. data/test/fixtures/plesk_kit/customer_accounts.yml +13 -0
  139. data/test/fixtures/plesk_kit/customers.yml +7 -0
  140. data/test/fixtures/plesk_kit/reseller_accounts.yml +13 -0
  141. data/test/fixtures/plesk_kit/servers.yml +15 -0
  142. data/test/fixtures/plesk_kit/service_plans.yml +13 -0
  143. data/test/fixtures/plesk_kit/subscriptions.yml +17 -0
  144. data/test/fixtures/plesk_kit/webspaces.yml +11 -0
  145. data/test/functional/plesk_kit/customer_accounts_controller_test.rb +51 -0
  146. data/test/functional/plesk_kit/customers_controller_test.rb +51 -0
  147. data/test/functional/plesk_kit/reseller_accounts_controller_test.rb +51 -0
  148. data/test/functional/plesk_kit/servers_controller_test.rb +51 -0
  149. data/test/functional/plesk_kit/subscriptions_controller_test.rb +51 -0
  150. data/test/integration/navigation_test.rb +10 -0
  151. data/test/plesk_kit_test.rb +7 -0
  152. data/test/test_helper.rb +15 -0
  153. data/test/unit/helpers/plesk_kit/customer_accounts_helper_test.rb +6 -0
  154. data/test/unit/helpers/plesk_kit/customers_helper_test.rb +6 -0
  155. data/test/unit/helpers/plesk_kit/reseller_accounts_helper_test.rb +6 -0
  156. data/test/unit/helpers/plesk_kit/servers_helper_test.rb +6 -0
  157. data/test/unit/helpers/plesk_kit/subscriptions_helper_test.rb +6 -0
  158. data/test/unit/plesk_kit/customer_account_test.rb +9 -0
  159. data/test/unit/plesk_kit/customer_test.rb +9 -0
  160. data/test/unit/plesk_kit/reseller_account_test.rb +9 -0
  161. data/test/unit/plesk_kit/server_test.rb +9 -0
  162. data/test/unit/plesk_kit/service_plan_test.rb +9 -0
  163. data/test/unit/plesk_kit/subscription_test.rb +9 -0
  164. data/test/unit/plesk_kit/webspace_test.rb +9 -0
  165. metadata +270 -13
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ cname: MyString
5
+ pname: MyString
6
+ login: MyString
7
+ passwd: MyString
8
+
9
+ two:
10
+ cname: MyString
11
+ pname: MyString
12
+ login: MyString
13
+ passwd: MyString
@@ -0,0 +1,7 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ fist_name: MyString
5
+
6
+ two:
7
+ fist_name: MyString
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ cname: MyString
5
+ pname: MyString
6
+ login: MyString
7
+ passwd: MyString
8
+
9
+ two:
10
+ cname: MyString
11
+ pname: MyString
12
+ login: MyString
13
+ passwd: MyString
@@ -0,0 +1,15 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ environment: MyString
5
+ host: MyString
6
+ username: MyString
7
+ password: MyString
8
+ ghostname: MyString
9
+
10
+ two:
11
+ environment: MyString
12
+ host: MyString
13
+ username: MyString
14
+ password: MyString
15
+ ghostname: MyString
@@ -0,0 +1,13 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+ domains: MyString
6
+ traffic: MyString
7
+ :
8
+
9
+ two:
10
+ name: MyString
11
+ domains: MyString
12
+ traffic: MyString
13
+ :
@@ -0,0 +1,17 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ one:
4
+ name: MyString
5
+ owner-id: MyString
6
+ owner-login: MyString
7
+ ip_address: MyString
8
+ plan-name: MyString
9
+ service_plan_id: 1
10
+
11
+ two:
12
+ name: MyString
13
+ owner-id: MyString
14
+ owner-login: MyString
15
+ ip_address: MyString
16
+ plan-name: MyString
17
+ service_plan_id: 1
@@ -0,0 +1,11 @@
1
+ # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/Fixtures.html
2
+
3
+ # This model initially had no columns defined. If you add columns to the
4
+ # model remove the '{}' from the fixture names and add the columns immediately
5
+ # below each fixture, per the syntax in the comments below
6
+ #
7
+ one: {}
8
+ # column: value
9
+ #
10
+ two: {}
11
+ # column: value
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class CustomerAccountsControllerTest < ActionController::TestCase
5
+ setup do
6
+ @customer_account = customer_accounts(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:customer_accounts)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create customer_account" do
21
+ assert_difference('CustomerAccount.count') do
22
+ post :create, customer_account: { cname: @customer_account.cname, login: @customer_account.login, passwd: @customer_account.passwd, pname: @customer_account.pname }
23
+ end
24
+
25
+ assert_redirected_to customer_account_path(assigns(:customer_account))
26
+ end
27
+
28
+ test "should show customer_account" do
29
+ get :show, id: @customer_account
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, id: @customer_account
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update customer_account" do
39
+ put :update, id: @customer_account, customer_account: { cname: @customer_account.cname, login: @customer_account.login, passwd: @customer_account.passwd, pname: @customer_account.pname }
40
+ assert_redirected_to customer_account_path(assigns(:customer_account))
41
+ end
42
+
43
+ test "should destroy customer_account" do
44
+ assert_difference('CustomerAccount.count', -1) do
45
+ delete :destroy, id: @customer_account
46
+ end
47
+
48
+ assert_redirected_to customer_accounts_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class CustomersControllerTest < ActionController::TestCase
5
+ setup do
6
+ @customer = customers(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:customers)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create customer" do
21
+ assert_difference('Customer.count') do
22
+ post :create, customer: { fist_name: @customer.fist_name }
23
+ end
24
+
25
+ assert_redirected_to customer_path(assigns(:customer))
26
+ end
27
+
28
+ test "should show customer" do
29
+ get :show, id: @customer
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, id: @customer
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update customer" do
39
+ put :update, id: @customer, customer: { fist_name: @customer.fist_name }
40
+ assert_redirected_to customer_path(assigns(:customer))
41
+ end
42
+
43
+ test "should destroy customer" do
44
+ assert_difference('Customer.count', -1) do
45
+ delete :destroy, id: @customer
46
+ end
47
+
48
+ assert_redirected_to customers_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class ResellerAccountsControllerTest < ActionController::TestCase
5
+ setup do
6
+ @reseller_account = reseller_accounts(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:reseller_accounts)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create reseller_account" do
21
+ assert_difference('ResellerAccount.count') do
22
+ post :create, reseller_account: { cname: @reseller_account.cname, login: @reseller_account.login, passwd: @reseller_account.passwd, pname: @reseller_account.pname }
23
+ end
24
+
25
+ assert_redirected_to reseller_account_path(assigns(:reseller_account))
26
+ end
27
+
28
+ test "should show reseller_account" do
29
+ get :show, id: @reseller_account
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, id: @reseller_account
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update reseller_account" do
39
+ put :update, id: @reseller_account, reseller_account: { cname: @reseller_account.cname, login: @reseller_account.login, passwd: @reseller_account.passwd, pname: @reseller_account.pname }
40
+ assert_redirected_to reseller_account_path(assigns(:reseller_account))
41
+ end
42
+
43
+ test "should destroy reseller_account" do
44
+ assert_difference('ResellerAccount.count', -1) do
45
+ delete :destroy, id: @reseller_account
46
+ end
47
+
48
+ assert_redirected_to reseller_accounts_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class ServersControllerTest < ActionController::TestCase
5
+ setup do
6
+ @server = servers(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:servers)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create server" do
21
+ assert_difference('Server.count') do
22
+ post :create, server: { environment: @server.environment, ghostname: @server.ghostname, host: @server.host, password: @server.password, username: @server.username }
23
+ end
24
+
25
+ assert_redirected_to server_path(assigns(:server))
26
+ end
27
+
28
+ test "should show server" do
29
+ get :show, id: @server
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, id: @server
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update server" do
39
+ put :update, id: @server, server: { environment: @server.environment, ghostname: @server.ghostname, host: @server.host, password: @server.password, username: @server.username }
40
+ assert_redirected_to server_path(assigns(:server))
41
+ end
42
+
43
+ test "should destroy server" do
44
+ assert_difference('Server.count', -1) do
45
+ delete :destroy, id: @server
46
+ end
47
+
48
+ assert_redirected_to servers_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,51 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class SubscriptionsControllerTest < ActionController::TestCase
5
+ setup do
6
+ @subscription = subscriptions(:one)
7
+ end
8
+
9
+ test "should get index" do
10
+ get :index
11
+ assert_response :success
12
+ assert_not_nil assigns(:subscriptions)
13
+ end
14
+
15
+ test "should get new" do
16
+ get :new
17
+ assert_response :success
18
+ end
19
+
20
+ test "should create subscription" do
21
+ assert_difference('Subscription.count') do
22
+ post :create, subscription: { ip_address: @subscription.ip_address, name: @subscription.name, owner-id: @subscription.owner-id, owner-login: @subscription.owner-login, plan-name: @subscription.plan-name, service_plan_id: @subscription.service_plan_id }
23
+ end
24
+
25
+ assert_redirected_to subscription_path(assigns(:subscription))
26
+ end
27
+
28
+ test "should show subscription" do
29
+ get :show, id: @subscription
30
+ assert_response :success
31
+ end
32
+
33
+ test "should get edit" do
34
+ get :edit, id: @subscription
35
+ assert_response :success
36
+ end
37
+
38
+ test "should update subscription" do
39
+ put :update, id: @subscription, subscription: { ip_address: @subscription.ip_address, name: @subscription.name, owner-id: @subscription.owner-id, owner-login: @subscription.owner-login, plan-name: @subscription.plan-name, service_plan_id: @subscription.service_plan_id }
40
+ assert_redirected_to subscription_path(assigns(:subscription))
41
+ end
42
+
43
+ test "should destroy subscription" do
44
+ assert_difference('Subscription.count', -1) do
45
+ delete :destroy, id: @subscription
46
+ end
47
+
48
+ assert_redirected_to subscriptions_path
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class PleskKitTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, PleskKit
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class CustomerAccountsHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class CustomersHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class ResellerAccountsHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class ServersHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class SubscriptionsHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class CustomerAccountTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class CustomerTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module PleskKit
4
+ class ResellerAccountTest < ActiveSupport::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end