ajax.js 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. */
  18. var App = require('app');
  19. /**
  20. * Config for each ajax-request
  21. *
  22. * Fields example:
  23. * mock - testMode url
  24. * real - real url (without API prefix)
  25. * type - request type (also may be defined in the format method)
  26. * format - function for processing ajax params after default formatRequest. May be called with one or two parameters (data, opt). Return ajax-params object
  27. * testInProduction - can this request be executed on production tests (used only in tests)
  28. *
  29. * @type {Object}
  30. */
  31. var urls = {
  32. 'common.cluster.update' : {
  33. 'type': 'PUT',
  34. 'real': '/clusters/{clusterName}',
  35. 'mock': '/data/wizard/deploy/poll_1.json',
  36. 'format': function (data) {
  37. return {
  38. data: JSON.stringify(data.data)
  39. };
  40. }
  41. },
  42. 'common.services.update' : {
  43. 'real': '/clusters/{clusterName}/services?{urlParams}',
  44. 'mock': '/data/wizard/deploy/poll_1.json',
  45. 'format': function (data) {
  46. return {
  47. type: 'PUT',
  48. data: JSON.stringify({
  49. RequestInfo: {
  50. "context": data.context,
  51. "operation_level": {
  52. "level": "CLUSTER",
  53. "cluster_name" : data.clusterName
  54. }
  55. },
  56. Body: {
  57. ServiceInfo: data.ServiceInfo
  58. }
  59. })
  60. };
  61. }
  62. },
  63. 'common.service.update' : {
  64. 'real': '/clusters/{clusterName}/services/{serviceName}',
  65. 'mock': '/data/wizard/deploy/poll_1.json',
  66. 'format': function (data) {
  67. return {
  68. type: 'PUT',
  69. data: JSON.stringify({
  70. RequestInfo: {
  71. "context": data.context,
  72. "operation_level": {
  73. "level": "SERVICE",
  74. "cluster_name" : data.clusterName,
  75. "service_name" : data.serviceName
  76. }
  77. },
  78. Body: {
  79. ServiceInfo: data.ServiceInfo
  80. }
  81. })
  82. };
  83. }
  84. },
  85. 'common.service_component.info' : {
  86. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}?{urlParams}',
  87. 'mock': '/data/wizard/deploy/poll_1.json'
  88. },
  89. 'common.host_component.update': {
  90. 'real': '/clusters/{clusterName}/host_components',
  91. 'mock': '',
  92. 'type': 'PUT',
  93. 'format': function (data) {
  94. return {
  95. data: JSON.stringify({
  96. RequestInfo: {
  97. context: data.context,
  98. query: data.query
  99. },
  100. Body: {
  101. "HostRoles": data.HostRoles
  102. }
  103. })
  104. }
  105. }
  106. },
  107. 'common.host.host_components.update': {
  108. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components?{urlParams}',
  109. 'mock': '',
  110. 'type': 'PUT',
  111. 'format': function (data) {
  112. return {
  113. data: JSON.stringify({
  114. RequestInfo: {
  115. "context": data.context,
  116. "operation_level": {
  117. level: "HOST",
  118. cluster_name: data.clusterName,
  119. host_names: data.hostName
  120. },
  121. query: data.query
  122. },
  123. Body: {
  124. "HostRoles": data.HostRoles
  125. }
  126. })
  127. }
  128. }
  129. },
  130. 'common.host.host_component.update': {
  131. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}?{urlParams}',
  132. 'mock': '/data/wizard/deploy/2_hosts/poll_9.json',
  133. 'type': 'PUT',
  134. 'format': function (data) {
  135. return {
  136. data: JSON.stringify({
  137. RequestInfo: {
  138. "context": data.context,
  139. "operation_level": {
  140. level: "HOST_COMPONENT",
  141. cluster_name: data.clusterName,
  142. host_name: data.hostName,
  143. service_name: data.serviceName || null
  144. }
  145. },
  146. Body: {
  147. "HostRoles": data.HostRoles
  148. }
  149. })
  150. }
  151. }
  152. },
  153. 'common.service.configurations': {
  154. 'real':'/clusters/{clusterName}',
  155. 'mock':'',
  156. 'format': function (data) {
  157. return {
  158. type: 'PUT',
  159. data: JSON.stringify({
  160. Clusters: {
  161. desired_config: data.desired_config
  162. }
  163. })
  164. }
  165. }
  166. },
  167. 'common.across.services.configurations': {
  168. 'type': 'PUT',
  169. 'real':'/clusters/{clusterName}',
  170. 'mock':'/data/services/ambari.json',
  171. 'format': function(data) {
  172. return {
  173. dataType: 'text',
  174. data: data.data
  175. }
  176. }
  177. },
  178. 'common.request.polling': {
  179. 'real': '/clusters/{clusterName}/requests/{requestId}?fields=tasks/Tasks/request_id,tasks/Tasks/command,tasks/Tasks/command_detail,tasks/Tasks/start_time,tasks/Tasks/end_time,tasks/Tasks/exit_code,tasks/Tasks/host_name,tasks/Tasks/id,tasks/Tasks/role,tasks/Tasks/status,tasks/Tasks/structured_out,Requests/*&tasks/Tasks/stage_id={stageId}',
  180. 'mock': '/data/background_operations/host_upgrade_tasks.json'
  181. },
  182. 'service.ambari': {
  183. 'real': '/services/AMBARI?fields=components/RootServiceComponents',
  184. 'mock': '/data/services/ambari.json'
  185. },
  186. 'service.flume.agent.command': {
  187. 'real': '/clusters/{clusterName}/hosts/{host}/host_components/FLUME_HANDLER',
  188. 'mock': '',
  189. 'format': function (data) {
  190. return {
  191. type: 'PUT',
  192. data: JSON.stringify({
  193. "RequestInfo": {
  194. "context": data.context,
  195. "flume_handler": data.agentName,
  196. "operation_level": {
  197. level: "HOST_COMPONENT",
  198. cluster_name: data.clusterName,
  199. service_name: "FLUME",
  200. host_name: data.host
  201. }
  202. },
  203. "Body": {
  204. "HostRoles": {
  205. "state": data.state
  206. }
  207. }
  208. })
  209. }
  210. }
  211. },
  212. 'common.host_components.update': {
  213. 'real': '/clusters/{clusterName}/host_components?{urlParams}',
  214. 'mock': '/data/wizard/deploy/poll_1.json',
  215. 'type': 'PUT',
  216. 'format': function (data) {
  217. return {
  218. data: JSON.stringify({
  219. RequestInfo: {
  220. "context": data.context,
  221. "operation_level": {
  222. level: data.level || "CLUSTER",
  223. cluster_name: data.clusterName
  224. },
  225. query: data.query
  226. },
  227. Body: {
  228. "HostRoles": data.HostRoles
  229. }
  230. })
  231. }
  232. }
  233. },
  234. 'common.service.passive': {
  235. 'real': '/clusters/{clusterName}/services/{serviceName}',
  236. 'mock': '',
  237. 'format': function (data) {
  238. return {
  239. type: 'PUT',
  240. data: JSON.stringify({
  241. RequestInfo: {
  242. "context": data.requestInfo
  243. },
  244. Body: {
  245. ServiceInfo: {
  246. maintenance_state: data.passive_state
  247. }
  248. }
  249. })
  250. };
  251. }
  252. },
  253. 'common.host.host_component.passive': {
  254. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  255. 'mock': '',
  256. 'type': 'PUT',
  257. 'format': function (data) {
  258. return {
  259. data: JSON.stringify({
  260. RequestInfo: {
  261. "context": data.context
  262. },
  263. Body: {
  264. HostRoles: {
  265. maintenance_state: data.passive_state
  266. }
  267. }
  268. })
  269. };
  270. }
  271. },
  272. 'common.host.with_host_component': {
  273. 'real': '/clusters/{clusterName}/hosts?host_components/HostRoles/component_name={componentName}&minimal_response=true',
  274. 'mock': ''
  275. },
  276. 'common.delete.host': {
  277. 'real': '/clusters/{clusterName}/hosts/{hostName}',
  278. 'type': 'DELETE'
  279. },
  280. 'common.delete.host_component': {
  281. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  282. 'type': 'DELETE'
  283. },
  284. 'common.delete.user': {
  285. 'real': '/users/{user}',
  286. 'type': 'DELETE'
  287. },
  288. 'common.delete.config_group': {
  289. 'real': '/clusters/{clusterName}/config_groups/{id}',
  290. 'type': 'DELETE'
  291. },
  292. 'common.delete.cluster': {
  293. 'real': '/clusters/{name}',
  294. 'type': 'DELETE'
  295. },
  296. 'common.delete.service': {
  297. 'real': '/clusters/{clusterName}/services/{serviceName}',
  298. 'mock': '/data/services/ambari.json',
  299. 'type': 'DELETE'
  300. },
  301. 'common.delete.request_schedule': {
  302. 'real': '/clusters/{clusterName}/request_schedules/{request_schedule_id}',
  303. 'type': 'DELETE'
  304. },
  305. 'alerts.load_alert_groups': {
  306. 'real': '/clusters/{clusterName}/alert_groups?fields=*',
  307. 'mock': 'data/alerts/alertGroups.json'
  308. },
  309. 'alerts.load_an_alert_group': {
  310. 'real': '/clusters/{clusterName}/alert_groups/{group_id}',
  311. 'mock': 'data/alerts/alertGroup.json'
  312. },
  313. 'alert_groups.create': {
  314. 'real': '/clusters/{clusterName}/alert_groups',
  315. 'mock': '',
  316. 'format': function (data) {
  317. return {
  318. type: 'POST',
  319. data: JSON.stringify({
  320. "AlertGroup": {
  321. "name": data.name,
  322. "definitions": data.definitions,
  323. "targets": data.targets
  324. }
  325. })
  326. };
  327. }
  328. },
  329. 'alert_groups.update': {
  330. 'real': '/clusters/{clusterName}/alert_groups/{group_id}',
  331. 'mock': '',
  332. 'format': function (data) {
  333. return {
  334. type: 'PUT',
  335. data: JSON.stringify({
  336. "AlertGroup": {
  337. "name": data.name,
  338. "definitions": data.definitions,
  339. "targets": data.targets
  340. }
  341. })
  342. };
  343. }
  344. },
  345. 'alert_groups.delete': {
  346. 'real': '/clusters/{clusterName}/alert_groups/{group_id}',
  347. 'mock': '',
  348. 'format': function (data) {
  349. return {
  350. type: 'DELETE'
  351. };
  352. }
  353. },
  354. 'alerts.load_all_alert_definitions': {
  355. 'real': '/clusters/{clusterName}/alert_definitions?fields=*',
  356. 'mock': 'data/alerts/alertDefinitions.json'
  357. },
  358. 'alerts.notifications': {
  359. 'real': '/alert_targets?fields=*',
  360. 'mock': '/data/alerts/alertNotifications.json'
  361. },
  362. 'alerts.instances': {
  363. 'real': '/clusters/{clusterName}/alerts?fields=*',
  364. 'mock': '/data/alerts/alert_instances.json'
  365. },
  366. 'alerts.instances.unhealthy': {
  367. 'real': '/clusters/{clusterName}/alerts?fields=*&Alert/state.in(CRITICAL,WARNING)&{paginationInfo}',
  368. 'mock': '/data/alerts/alert_instances.json'
  369. },
  370. 'alerts.instances.by_definition': {
  371. 'real': '/clusters/{clusterName}/alerts?fields=*&Alert/definition_id={definitionId}',
  372. 'mock': '/data/alerts/alert_instances.json'
  373. },
  374. 'alerts.instances.by_host': {
  375. 'real': '/clusters/{clusterName}/alerts?fields=*&Alert/host_name={hostName}',
  376. 'mock': '/data/alerts/alert_instances.json'
  377. },
  378. 'alerts.update_alert_definition': {
  379. 'real': '/clusters/{clusterName}/alert_definitions/{id}',
  380. 'mock': '',
  381. 'format': function (data) {
  382. return {
  383. type: 'PUT',
  384. data: JSON.stringify(data.data)
  385. }
  386. }
  387. },
  388. 'alerts.create_alert_definition': {
  389. 'real': '/clusters/{clusterName}/alert_definitions/',
  390. 'mock': '',
  391. 'format': function (data) {
  392. return {
  393. type: 'POST',
  394. data: JSON.stringify(data.data)
  395. }
  396. }
  397. },
  398. 'alerts.delete_alert_definition': {
  399. 'real': '/clusters/{clusterName}/alert_definitions/{id}',
  400. 'mock': '',
  401. 'type': 'DELETE'
  402. },
  403. 'alerts.create_alert_notification': {
  404. 'real': '/alert_targets?{urlParams}',
  405. 'mock': '',
  406. 'format': function (data) {
  407. return {
  408. type: 'POST',
  409. data: JSON.stringify(data.data)
  410. }
  411. }
  412. },
  413. 'alerts.update_alert_notification': {
  414. 'real': '/alert_targets/{id}',
  415. 'mock': '',
  416. 'format': function (data) {
  417. return {
  418. type: 'PUT',
  419. data: JSON.stringify(data.data)
  420. }
  421. }
  422. },
  423. 'alerts.delete_alert_notification': {
  424. 'real': '/alert_targets/{id}',
  425. 'mock': '',
  426. 'type': 'DELETE'
  427. },
  428. 'alerts.get_instances_history': {
  429. 'real': '/clusters/{clusterName}/alert_history?(AlertHistory/definition_name={definitionName})&(AlertHistory/timestamp>={timestamp})',
  430. 'mock': '/data/alerts/alert_instances_history.json'
  431. },
  432. 'background_operations.get_most_recent': {
  433. 'real': '/clusters/{clusterName}/requests?to=end&page_size={operationsCount}&fields=Requests',
  434. 'mock': '/data/background_operations/list_on_start.json',
  435. 'testInProduction': true
  436. },
  437. 'background_operations.get_by_request': {
  438. 'real': '/clusters/{clusterName}/requests/{requestId}?fields=*,tasks/Tasks/request_id,tasks/Tasks/command,tasks/Tasks/command_detail,tasks/Tasks/start_time,tasks/Tasks/end_time,tasks/Tasks/exit_code,tasks/Tasks/host_name,tasks/Tasks/id,tasks/Tasks/role,tasks/Tasks/status&minimal_response=true',
  439. 'mock': '/data/background_operations/task_by_request{requestId}.json',
  440. 'testInProduction': true
  441. },
  442. 'background_operations.get_by_task': {
  443. 'real': '/clusters/{clusterName}/requests/{requestId}/tasks/{taskId}',
  444. 'mock': '/data/background_operations/list_on_start.json',
  445. 'testInProduction': true
  446. },
  447. 'background_operations.abort_request': {
  448. 'real': '/clusters/{clusterName}/requests/{requestId}',
  449. 'mock': '',
  450. 'format': function () {
  451. return {
  452. type: 'PUT',
  453. data: JSON.stringify({
  454. "Requests": {
  455. "request_status": "ABORTED",
  456. "abort_reason": Em.I18n.t('hostPopup.bgop.abortRequest.reason')
  457. }
  458. })
  459. };
  460. }
  461. },
  462. 'service.item.smoke': {
  463. 'real': '/clusters/{clusterName}/requests',
  464. 'mock': '/data/wizard/deploy/poll_1.json',
  465. 'format': function (data) {
  466. var requestData = {
  467. "RequestInfo": {
  468. "context": data.displayName + " Service Check",
  469. "command": data.actionName
  470. },
  471. "Requests/resource_filters": [{"service_name": data.serviceName}]
  472. };
  473. if (data.operationLevel) {
  474. requestData.RequestInfo.operation_level = data.operationLevel;
  475. }
  476. return {
  477. 'type': 'POST',
  478. data: JSON.stringify(requestData)
  479. };
  480. }
  481. },
  482. 'service.item.rebalanceHdfsNodes': {
  483. 'real': '/clusters/{clusterName}/requests',
  484. 'mock': '',
  485. 'format': function (data) {
  486. return {
  487. type: 'POST',
  488. data: JSON.stringify({
  489. RequestInfo: {
  490. 'context': Em.I18n.t('services.service.actions.run.rebalanceHdfsNodes.context'),
  491. 'command': 'REBALANCEHDFS',
  492. 'namenode': JSON.stringify({threshold: data.threshold})
  493. },
  494. "Requests/resource_filters": [{
  495. 'service_name': 'HDFS',
  496. 'component_name': 'NAMENODE',
  497. 'hosts': data.hosts
  498. }]
  499. })
  500. }
  501. }
  502. },
  503. 'cancel.background.operation': {
  504. 'real': '/clusters/{clusterName}/requests/{requestId}',
  505. 'mock': '',
  506. 'format': function (data) {
  507. return {
  508. type: 'PUT',
  509. data: JSON.stringify({
  510. RequestInfo: {
  511. 'context': 'Cancel operation',
  512. "parameters": {
  513. "cancel_policy": "SIGKILL"
  514. }
  515. },
  516. "Requests/request_status": 'ABORTED',
  517. "Requests/abort_reason": "Cancel background operation"
  518. })
  519. }
  520. }
  521. },
  522. 'service.item.refreshQueueYarnRequest': {
  523. 'real': '/clusters/{clusterName}/requests',
  524. 'mock': '',
  525. 'format': function (data) {
  526. return {
  527. type: 'POST',
  528. data: JSON.stringify({
  529. RequestInfo: {
  530. 'context': data.context,
  531. 'command': data.command,
  532. 'parameters/forceRefreshConfigTags': data.forceRefreshConfigTags
  533. },
  534. "Requests/resource_filters": [{
  535. "service_name": data.serviceName,
  536. "component_name": data.componentName,
  537. 'hosts': data.hosts
  538. }]
  539. })
  540. }
  541. }
  542. },
  543. 'service.item.startStopLdapKnox': {
  544. 'real': '/clusters/{clusterName}/requests',
  545. 'mock': '',
  546. 'format': function (data) {
  547. return {
  548. type: 'POST',
  549. data: JSON.stringify({
  550. RequestInfo: {
  551. 'context': data.context,
  552. 'command': data.command
  553. },
  554. "Requests/resource_filters": [{
  555. "service_name": data.serviceName,
  556. "component_name": data.componentName,
  557. 'hosts': data.host
  558. }]
  559. })
  560. }
  561. }
  562. },
  563. 'service.item.executeCustomCommand': {
  564. 'real': '/clusters/{clusterName}/requests',
  565. 'mock': '',
  566. 'format': function (data) {
  567. return {
  568. type: 'POST',
  569. data: JSON.stringify({
  570. RequestInfo: {
  571. 'context': data.context,
  572. 'command': data.command
  573. },
  574. "Requests/resource_filters": [{
  575. "service_name": data.serviceName,
  576. "component_name": data.componentName,
  577. 'hosts': data.hosts
  578. }]
  579. })
  580. }
  581. }
  582. },
  583. /*************************CONFIG THEME****************************************/
  584. 'configs.theme': {
  585. 'real': '{stackVersionUrl}/services/{serviceName}/themes?ThemeInfo/default=true&fields=*',
  586. 'mock': '/data/configurations/theme.json'
  587. },
  588. 'configs.theme.services': {
  589. 'real': '{stackVersionUrl}/services?StackServices/service_name.in({serviceNames})&themes/ThemeInfo/default=true&fields=themes/*',
  590. 'mock': '/data/configurations/theme_services.json'
  591. },
  592. /*************************CONFIG GROUPS***************************************/
  593. 'configs.config_groups.load.all': {
  594. 'real': '/clusters/{clusterName}/config_groups?fields=*',
  595. 'mock': '/data/configurations/config_groups.json'
  596. },
  597. 'configs.config_groups.load.services': {
  598. 'real': '/clusters/{clusterName}/config_groups?ConfigGroup/tag.in({serviceList})&fields=*',
  599. 'mock': '/data/configurations/config_groups.json'
  600. },
  601. /*************************STACK CONFIGS**************************************/
  602. 'configs.stack_configs.load.all': {
  603. 'real': '{stackVersionUrl}/services?fields=configurations/*,StackServices/config_types/*',
  604. 'mock': '/data/stacks/HDP-2.2/configurations.json'
  605. },
  606. 'configs.stack_configs.load.services': {
  607. 'real': '{stackVersionUrl}/services?StackServices/service_name.in({serviceList})&fields=configurations/*,StackServices/config_types/*',
  608. 'mock': '/data/stacks/HDP-2.2/configurations.json'
  609. },
  610. 'configs.stack_configs.load.service': {
  611. 'real': '{stackVersionUrl}/services/{serviceName}?fields=configurations/*,StackServices/config_types/*',
  612. 'mock': '/data/stacks/HDP-2.2/configurations.json'
  613. },
  614. /*************************CONFIG VERSIONS*************************************/
  615. 'configs.config_versions.load.all.min': {
  616. 'real': '/clusters/{clusterName}/configurations/service_config_versions?fields=service_config_version,user,hosts,group_id,group_name,is_current,createtime,service_name,service_config_version_note&minimal_response=true',
  617. 'mock': '/data/configurations/config_versions.json'
  618. },
  619. 'configs.config_versions.load.service.min': {
  620. 'real': '/clusters/{clusterName}/configurations/service_config_versions?service_name={serviceName}&fields=service_config_version,user,hosts,group_id,group_name,is_current,createtime,service_name,service_config_version_note&minimal_response=true',
  621. 'mock': '/data/configurations/config_versions.json'
  622. },
  623. 'configs.config_versions.load': {
  624. 'real': '/clusters/{clusterName}/configurations/service_config_versions?service_name={serviceName}&service_config_version={configVersion}&fields=*',
  625. 'mock': '/data/configurations/config_versions.json'
  626. },
  627. 'configs.config_versions.load.group': {
  628. 'real': '/clusters/{clusterName}/configurations/service_config_versions?service_name={serviceName}&group_id={configGroupId}&fields=*',
  629. 'mock': '/data/configurations/config_versions.json'
  630. },
  631. 'configs.config_versions.load.current_versions': {
  632. 'real': '/clusters/{clusterName}/configurations/service_config_versions?service_name.in({serviceNames})&is_current=true&fields=*',
  633. 'mock': '/data/configurations/config_versions.json'
  634. },
  635. 'service.load_config_groups': {
  636. 'real': '/clusters/{clusterName}/config_groups?ConfigGroup/tag={serviceName}&fields=*',
  637. 'mock': '/data/configurations/config_group.json'
  638. },
  639. 'reassign.load_configs': {
  640. 'real': '/clusters/{clusterName}/configurations?{urlParams}',
  641. 'mock': ''
  642. },
  643. 'reassign.save_configs': {
  644. 'real': '/clusters/{clusterName}',
  645. 'mock': '',
  646. 'type': 'PUT',
  647. 'format': function (data) {
  648. return {
  649. data: JSON.stringify({
  650. Clusters: {
  651. desired_config: {
  652. "type": data.siteName,
  653. "tag": 'version' + (new Date).getTime(),
  654. "properties": data.properties,
  655. "service_config_version_note": data.service_config_version_note
  656. }
  657. }
  658. })
  659. }
  660. }
  661. },
  662. 'config.cluster': {
  663. 'real': '{stackVersionUrl}/configurations?fields=*',
  664. 'mock': ''
  665. },
  666. 'config.advanced': {
  667. 'real': '{stackVersionUrl}/services/{serviceName}/configurations?fields=*',
  668. 'mock': '/data/wizard/stack/hdp/version{stackVersion}/{serviceName}.json'
  669. },
  670. 'config.advanced.partial': {
  671. 'real': '{stackVersionUrl}/services/?StackServices/service_name.in({serviceList})&fields=configurations/*{queryFilter}',
  672. 'mock': ''
  673. },
  674. 'config.config_types': {
  675. 'real': '{stackVersionUrl}/services/{serviceName}?fields=StackServices/config_types',
  676. 'mock': ''
  677. },
  678. 'config.tags': {
  679. 'real': '/clusters/{clusterName}?fields=Clusters/desired_configs',
  680. 'mock': '/data/clusters/cluster.json'
  681. },
  682. 'config.tags_and_groups': {
  683. 'real': '/clusters/{clusterName}?fields=Clusters/desired_configs,config_groups/*{urlParams}',
  684. 'mock': '/data/clusters/tags_and_groups.json'
  685. },
  686. 'config.ambari.database.info': {
  687. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=hostComponents/RootServiceHostComponents/properties/server.jdbc.database_name,hostComponents/RootServiceHostComponents/properties/server.jdbc.url',
  688. 'mock': ''
  689. },
  690. 'config_groups.all_fields': {
  691. 'real': '/clusters/{clusterName}/config_groups?fields=*',
  692. 'mock': ''
  693. },
  694. 'config_groups.get_config_group_by_id': {
  695. 'real': '/clusters/{clusterName}/config_groups/{id}',
  696. 'mock': ''
  697. },
  698. 'config_groups.update_config_group': {
  699. 'real': '/clusters/{clusterName}/config_groups/{id}',
  700. 'mock': '',
  701. 'type': 'PUT',
  702. 'format': function (data) {
  703. return {
  704. data: JSON.stringify(
  705. [
  706. data.configGroup
  707. ]
  708. )
  709. }
  710. }
  711. },
  712. 'config.on_site': {
  713. 'real': '/clusters/{clusterName}/configurations?{params}',
  714. 'mock': '/data/configurations/cluster_level_configs.json?{params}'
  715. },
  716. 'config.host_overrides': {
  717. 'real': '/clusters/{clusterName}/configurations?{params}',
  718. 'mock': '/data/configurations/host_level_overrides_configs.json?{params}'
  719. },
  720. 'config.cluster_env_site': {
  721. 'real': '/clusters/{clusterName}/configurations?type=cluster-env',
  722. 'mock': '/data/configuration/cluster_env_site.json'
  723. },
  724. 'host.host_component.add_new_component': {
  725. 'real': '/clusters/{clusterName}/hosts?Hosts/host_name={hostName}',
  726. 'mock': '/data/wizard/deploy/poll_1.json',
  727. 'format': function (data) {
  728. return {
  729. type: 'POST',
  730. data: data.data
  731. }
  732. }
  733. },
  734. 'host.host_component.slave_desired_admin_state': {
  735. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}/?fields=HostRoles/desired_admin_state',
  736. 'mock': '/data/hosts/HDP2/decommission_state.json'
  737. },
  738. 'host.host_component.decommission_status': {
  739. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}/?fields=ServiceComponentInfo,host_components/HostRoles/state',
  740. 'mock': ''
  741. },
  742. 'host_components.hbase_regionserver.active': {
  743. 'real': '/clusters/{clusterName}/host_components?HostRoles/component_name=HBASE_REGIONSERVER&HostRoles/maintenance_state=OFF&HostRoles/desired_admin_state=INSERVICE&HostRoles/host_name.in({hostNames})',
  744. 'mock': ''
  745. },
  746. 'host.host_component.decommission_status_datanode': {
  747. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}?fields=metrics/dfs/namenode',
  748. 'mock': '/data/hosts/HDP2/decommission_state.json'
  749. },
  750. 'host.region_servers.in_inservice': {
  751. 'real': '/clusters/{clusterName}/host_components?HostRoles/component_name=HBASE_REGIONSERVER&HostRoles/desired_admin_state=INSERVICE&fields=HostRoles/host_name&minimal_response=true',
  752. 'mock': ''
  753. },
  754. 'host.host_component.decommission_slave': {
  755. 'real': '/clusters/{clusterName}/requests',
  756. 'mock': '',
  757. 'format': function (data) {
  758. return {
  759. type: 'POST',
  760. data: JSON.stringify({
  761. RequestInfo: {
  762. 'context': data.context,
  763. 'command': data.command,
  764. 'parameters': {
  765. 'slave_type': data.slaveType,
  766. 'excluded_hosts': data.hostName
  767. },
  768. 'operation_level': {
  769. level: "HOST_COMPONENT",
  770. cluster_name: data.clusterName,
  771. host_name: data.hostName,
  772. service_name: data.serviceName
  773. }
  774. },
  775. "Requests/resource_filters": [{"service_name": data.serviceName, "component_name": data.componentName}]
  776. })
  777. }
  778. }
  779. },
  780. 'host.host_component.recommission_and_restart': {
  781. 'real': '/clusters/{clusterName}/request_schedules',
  782. 'mock': '',
  783. 'format': function (data) {
  784. return {
  785. type: 'POST',
  786. data: JSON.stringify([{
  787. "RequestSchedule": {
  788. "batch": [{
  789. "requests": data.batches
  790. }, {
  791. "batch_settings": {
  792. "batch_separation_in_seconds": data.intervalTimeSeconds,
  793. "task_failure_tolerance": data.tolerateSize
  794. }
  795. }]
  796. }
  797. }])
  798. }
  799. }
  800. },
  801. 'host.host_component.refresh_configs': {
  802. 'real': '/clusters/{clusterName}/requests',
  803. 'mock': '',
  804. 'format': function (data) {
  805. return {
  806. type: 'POST',
  807. data: JSON.stringify({
  808. "RequestInfo": {
  809. "command": "CONFIGURE",
  810. "context": data.context
  811. },
  812. "Requests/resource_filters": data.resource_filters
  813. })
  814. }
  815. }
  816. },
  817. 'hosts.metrics': {
  818. 'real': '/clusters/{clusterName}/hosts?fields={metricName}',
  819. 'mock': '/data/cluster_metrics/cpu_1hr.json'
  820. },
  821. 'hosts.metrics.host_component': {
  822. 'real': '/clusters/{clusterName}/services/{serviceName}/components/{componentName}?fields=host_components/{metricName}',
  823. 'mock': '/data/cluster_metrics/cpu_1hr.json'
  824. },
  825. 'service.metrics.flume.channel_fill_percent': {
  826. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/CHANNEL/ChannelFillPercentage[{fromSeconds},{toSeconds},{stepSeconds}]',
  827. 'mock': '/data/services/metrics/flume/channelFillPct.json',
  828. 'testInProduction': true
  829. },
  830. 'service.metrics.flume.channel_size': {
  831. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/CHANNEL/ChannelSize[{fromSeconds},{toSeconds},{stepSeconds}]',
  832. 'mock': '/data/services/metrics/flume/channelSize.json',
  833. 'testInProduction': true
  834. },
  835. 'service.metrics.flume.sink_drain_success': {
  836. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SINK/EventDrainSuccessCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  837. 'mock': '/data/services/metrics/flume/sinkDrainSuccessCount.json',
  838. 'testInProduction': true
  839. },
  840. 'service.metrics.flume.sink_connection_failed': {
  841. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SINK/ConnectionFailedCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  842. 'mock': '/data/services/metrics/flume/sinkConnectionFailedCount.json',
  843. 'testInProduction': true
  844. },
  845. 'service.metrics.flume.source_accepted': {
  846. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/flume/flume/SOURCE/EventAcceptedCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  847. 'mock': '/data/services/metrics/flume/sourceEventAccepted.json',
  848. 'testInProduction': true
  849. },
  850. 'service.metrics.flume.channel_size_for_all': {
  851. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=metrics/flume/flume/CHANNEL/ChannelSize/rate[{fromSeconds},{toSeconds},{stepSeconds}]'
  852. },
  853. 'service.metrics.flume.gc': {
  854. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  855. 'mock': '/data/services/metrics/flume/jvmGcTime.json',
  856. 'testInProduction': true
  857. },
  858. 'service.metrics.flume.jvm_heap_used': {
  859. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/memHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}]',
  860. 'mock': '/data/services/metrics/flume/jvmMemHeapUsedM.json',
  861. 'testInProduction': true
  862. },
  863. 'service.metrics.flume.jvm_threads_runnable': {
  864. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/jvm/threadsRunnable[{fromSeconds},{toSeconds},{stepSeconds}]',
  865. 'mock': '/data/services/metrics/flume/jvmThreadsRunnable.json',
  866. 'testInProduction': true
  867. },
  868. 'service.metrics.flume.cpu_user': {
  869. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=host_components/metrics/cpu/cpu_user[{fromSeconds},{toSeconds},{stepSeconds}]',
  870. 'mock': '',
  871. 'testInProduction': true
  872. },
  873. 'service.metrics.flume.incoming_event_put_successCount': {
  874. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=metrics/flume/flume/CHANNEL/EventPutSuccessCount/rate[{fromSeconds},{toSeconds},{stepSeconds}]'
  875. },
  876. 'service.metrics.flume.outgoing_event_take_success_count': {
  877. 'real': '/clusters/{clusterName}/services/FLUME/components/FLUME_HANDLER?fields=metrics/flume/flume/CHANNEL/EventTakeSuccessCount/rate[{fromSeconds},{toSeconds},{stepSeconds}]'
  878. },
  879. 'service.metrics.hbase.cluster_requests': {
  880. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/cluster_requests[{fromSeconds},{toSeconds},{stepSeconds}]',
  881. 'mock': '/data/services/metrics/hbase/cluster_requests.json',
  882. 'testInProduction': true
  883. },
  884. 'service.metrics.hbase.hlog_split_size': {
  885. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/splitSize_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  886. 'mock': '/data/services/metrics/hbase/hlog_split_size.json',
  887. 'testInProduction': true
  888. },
  889. 'service.metrics.hbase.hlog_split_time': {
  890. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_MASTER?fields=metrics/hbase/master/splitTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  891. 'mock': '/data/services/metrics/hbase/hlog_split_time.json',
  892. 'testInProduction': true
  893. },
  894. 'service.metrics.hbase.regionserver_queuesize': {
  895. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/flushQueueSize[{fromSeconds},{toSeconds},{stepSeconds}],metrics/hbase/regionserver/compactionQueueSize[{fromSeconds},{toSeconds},{stepSeconds}]',
  896. 'mock': '/data/services/metrics/hbase/regionserver_queuesize.json',
  897. 'testInProduction': true
  898. },
  899. 'service.metrics.hbase.regionserver_regions': {
  900. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/regions[{fromSeconds},{toSeconds},{stepSeconds}]',
  901. 'mock': '/data/services/metrics/hbase/regionserver_regions.json',
  902. 'testInProduction': true
  903. },
  904. 'service.metrics.hbase.regionserver_rw_requests': {
  905. 'real': '/clusters/{clusterName}/services/HBASE/components/HBASE_REGIONSERVER?fields=metrics/hbase/regionserver/readRequestsCount[{fromSeconds},{toSeconds},{stepSeconds}],metrics/hbase/regionserver/writeRequestsCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  906. 'mock': '/data/services/metrics/hbase/regionserver_rw_requests.json',
  907. 'testInProduction': true
  908. },
  909. 'service.metrics.ambari_metrics.master.average_load': {
  910. 'real': '/clusters/{clusterName}/services/AMBARI_METRICS/components/METRICS_COLLECTOR?fields=metrics/hbase/master/AverageLoad[{fromSeconds},{toSeconds},{stepSeconds}]',
  911. 'mock': '/data/services/metrics/ambari_metrics/master_average_load.json',
  912. 'testInProduction': true
  913. },
  914. 'service.metrics.ambari_metrics.region_server.store_files': {
  915. 'real': '/clusters/{clusterName}/services/AMBARI_METRICS/components/METRICS_COLLECTOR?fields=metrics/hbase/regionserver/storefiles[{fromSeconds},{toSeconds},{stepSeconds}]',
  916. 'mock': '/data/services/metrics/ambari_metrics/regionserver_store_files.json',
  917. 'testInProduction': true
  918. },
  919. 'service.metrics.ambari_metrics.region_server.regions': {
  920. 'real': '/clusters/{clusterName}/services/AMBARI_METRICS/components/METRICS_COLLECTOR?fields=metrics/hbase/regionserver/regions[{fromSeconds},{toSeconds},{stepSeconds}]',
  921. 'mock': '/data/services/metrics/ambari_metrics/regionserver_regions.json',
  922. 'testInProduction': true
  923. },
  924. 'service.metrics.ambari_metrics.region_server.request': {
  925. 'real': '/clusters/{clusterName}/services/AMBARI_METRICS/components/METRICS_COLLECTOR?fields=metrics/hbase/regionserver/requests[{fromSeconds},{toSeconds},{stepSeconds}]',
  926. 'mock': '/data/services/metrics/ambari_metrics/regionserver_requests.json',
  927. 'testInProduction': true
  928. },
  929. 'service.metrics.ambari_metrics.region_server.block_cache_hit_percent': {
  930. 'real': '/clusters/{clusterName}/services/AMBARI_METRICS/components/METRICS_COLLECTOR?fields=metrics/hbase/regionserver/blockCacheHitPercent[{fromSeconds},{toSeconds},{stepSeconds}]',
  931. 'mock': '/data/services/metrics/ambari_metrics/regionserver_blockcache_hitpercent.json',
  932. 'testInProduction': true
  933. },
  934. 'service.metrics.ambari_metrics.region_server.compaction_queue_size': {
  935. 'real': '/clusters/{clusterName}/services/AMBARI_METRICS/components/METRICS_COLLECTOR?fields=metrics/hbase/regionserver/compactionQueueSize[{fromSeconds},{toSeconds},{stepSeconds}]',
  936. 'mock': '/data/services/metrics/ambari_metrics/regionserver_compaction_queue_size.json',
  937. 'testInProduction': true
  938. },
  939. 'service.metrics.hdfs.block_status': {
  940. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/dfs/FSNamesystem/PendingReplicationBlocks[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/FSNamesystem/UnderReplicatedBlocks[{fromSeconds},{toSeconds},{stepSeconds}]',
  941. 'mock': '/data/services/metrics/hdfs/block_status.json',
  942. 'testInProduction': true
  943. },
  944. 'service.metrics.hdfs.file_operations': {
  945. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/dfs/namenode/FileInfoOps[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/namenode/CreateFileOps[{fromSeconds},{toSeconds},{stepSeconds}]',
  946. 'mock': '/data/services/metrics/hdfs/file_operations.json',
  947. 'testInProduction': true
  948. },
  949. 'service.metrics.hdfs.gc': {
  950. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  951. 'mock': '/data/services/metrics/hdfs/gc.json',
  952. 'testInProduction': true
  953. },
  954. 'service.metrics.hdfs.io': {
  955. 'real': '/clusters/{clusterName}/services/HDFS/components/DATANODE?fields=metrics/dfs/datanode/bytes_written[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/datanode/bytes_read[{fromSeconds},{toSeconds},{stepSeconds}]',
  956. 'mock': '/data/services/metrics/hdfs/io.json',
  957. 'testInProduction': true
  958. },
  959. 'service.metrics.hdfs.jvm_heap': {
  960. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/jvm/memNonHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memNonHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}]',
  961. 'mock': '/data/services/metrics/hdfs/jvm_heap.json',
  962. 'testInProduction': true
  963. },
  964. 'service.metrics.hdfs.jvm_threads': {
  965. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/jvm/threadsRunnable[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsBlocked[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsWaiting[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsTimedWaiting[{fromSeconds},{toSeconds},{stepSeconds}]',
  966. 'mock': '/data/services/metrics/hdfs/jvm_threads.json',
  967. 'testInProduction': true
  968. },
  969. 'service.metrics.hdfs.rpc': {
  970. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/rpc/RpcQueueTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  971. 'mock': '/data/services/metrics/hdfs/rpc.json',
  972. 'testInProduction': true
  973. },
  974. 'service.metrics.hdfs.space_utilization': {
  975. 'real': '/clusters/{clusterName}/hosts/{nameNodeName}/host_components/NAMENODE?fields=metrics/dfs/FSNamesystem/CapacityRemaining[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/FSNamesystem/CapacityUsed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/FSNamesystem/CapacityTotal[{fromSeconds},{toSeconds},{stepSeconds}],metrics/dfs/FSNamesystem/CapacityNonDFSUsed[{fromSeconds},{toSeconds},{stepSeconds}]',
  976. 'mock': '/data/services/metrics/hdfs/space_utilization.json',
  977. 'testInProduction': true
  978. },
  979. 'service.metrics.yarn.gc': {
  980. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/jvm/gcTimeMillis[{fromSeconds},{toSeconds},{stepSeconds}]',
  981. 'mock': '/data/services/metrics/yarn/gc.json',
  982. 'testInProduction': true
  983. },
  984. 'service.metrics.yarn.jobs_threads': {
  985. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/jvm/threadsRunnable[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsBlocked[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsWaiting[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/threadsTimedWaiting[{fromSeconds},{toSeconds},{stepSeconds}]',
  986. 'mock': '/data/services/metrics/yarn/jvm_threads.json',
  987. 'testInProduction': true
  988. },
  989. 'service.metrics.yarn.rpc': {
  990. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/rpc/RpcQueueTime_avg_time[{fromSeconds},{toSeconds},{stepSeconds}]',
  991. 'mock': '/data/services/metrics/yarn/rpc.json',
  992. 'testInProduction': true
  993. },
  994. 'service.metrics.yarn.jobs_heap': {
  995. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/jvm/memNonHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memNonHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapUsedM[{fromSeconds},{toSeconds},{stepSeconds}],metrics/jvm/memHeapCommittedM[{fromSeconds},{toSeconds},{stepSeconds}]',
  996. 'mock': '/data/services/metrics/yarn/jvm_heap.json',
  997. 'testInProduction': true
  998. },
  999. 'service.metrics.yarn.queue.allocated': {
  1000. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/Queue/root/AvailableMB[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/PendingMB[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AllocatedMB[{fromSeconds},{toSeconds},{stepSeconds}]',
  1001. 'mock': '',
  1002. 'testInProduction': true
  1003. },
  1004. 'service.metrics.yarn.queue.allocated.container': {
  1005. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/Queue/root/AllocatedContainers[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/ReservedContainers[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/PendingContainers[{fromSeconds},{toSeconds},{stepSeconds}]',
  1006. 'mock': '',
  1007. 'testInProduction': true
  1008. },
  1009. 'service.metrics.yarn.node.manager.statuses': {
  1010. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/ClusterMetrics/NumActiveNMs[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/ClusterMetrics/NumDecommissionedNMs[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/ClusterMetrics/NumLostNMs[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/ClusterMetrics/NumRebootedNMs[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/ClusterMetrics/NumUnhealthyNMs[{fromSeconds},{toSeconds},{stepSeconds}]',
  1011. 'mock': '',
  1012. 'testInProduction': true
  1013. },
  1014. 'service.metrics.yarn.queue.memory.resource': {
  1015. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=',
  1016. 'mock': '',
  1017. 'format': function (data, opt) {
  1018. var field1 = 'metrics/yarn/Queue/{queueName}/AllocatedMB[{fromSeconds},{toSeconds},{stepSeconds}]';
  1019. var field2 = 'metrics/yarn/Queue/{queueName}/AvailableMB[{fromSeconds},{toSeconds},{stepSeconds}]';
  1020. if (opt.url != null && data.queueNames != null && data.queueNames.length > 0) {
  1021. data.queueNames.forEach(function (q) {
  1022. data.queueName = q;
  1023. opt.url += (formatUrl(field1, data) + ",");
  1024. opt.url += (formatUrl(field2, data) + ",");
  1025. });
  1026. } else {
  1027. opt.url += (formatUrl(field1, data) + ",");
  1028. opt.url += (formatUrl(field2, data) + ",");
  1029. }
  1030. },
  1031. 'testInProduction': true
  1032. },
  1033. 'service.metrics.yarn.queue.apps.states.current': {
  1034. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/Queue/root/AppsPending[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AppsRunning[{fromSeconds},{toSeconds},{stepSeconds}]',
  1035. 'mock': '',
  1036. 'testInProduction': true
  1037. },
  1038. 'service.metrics.yarn.queue.apps.states.finished': {
  1039. 'real': '/clusters/{clusterName}/hosts/{resourceManager}/host_components/RESOURCEMANAGER?fields=metrics/yarn/Queue/root/AppsKilled[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AppsFailed[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AppsSubmitted[{fromSeconds},{toSeconds},{stepSeconds}],metrics/yarn/Queue/root/AppsCompleted[{fromSeconds},{toSeconds},{stepSeconds}]',
  1040. 'mock': '',
  1041. 'testInProduction': true
  1042. },
  1043. 'service.metrics.kafka.broker.topic': {
  1044. 'real': '/clusters/{clusterName}/services/KAFKA/components/KAFKA_BROKER?fields=metrics/kafka/server/BrokerTopicMetrics/AllTopicsBytesInPerSec/1MinuteRate[{fromSeconds},{toSeconds},{stepSeconds}],metrics/kafka/server/BrokerTopicMetrics/AllTopicsBytesOutPerSec/1MinuteRate[{fromSeconds},{toSeconds},{stepSeconds}],metrics/kafka/server/BrokerTopicMetrics/AllTopicsMessagesInPerSec/1MinuteRate[{fromSeconds},{toSeconds},{stepSeconds}]',
  1045. 'mock': ''
  1046. },
  1047. 'service.metrics.kafka.controller.KafkaController': {
  1048. 'real': '/clusters/{clusterName}/services/KAFKA/components/KAFKA_BROKER?fields=metrics/kafka/controller/KafkaController/ActiveControllerCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  1049. 'mock': ''
  1050. },
  1051. 'service.metrics.kafka.controller.ControllerStats': {
  1052. 'real': '/clusters/{clusterName}/services/KAFKA/components/KAFKA_BROKER?fields=metrics/kafka/controller/ControllerStats/LeaderElectionRateAndTimeMs/1MinuteRate[{fromSeconds},{toSeconds},{stepSeconds}],metrics/kafka/controller/ControllerStats/UncleanLeaderElectionsPerSec/1MinuteRate[{fromSeconds},{toSeconds},{stepSeconds}]',
  1053. 'mock': ''
  1054. },
  1055. 'service.metrics.kafka.log.LogFlushStats': {
  1056. 'real': '/clusters/{clusterName}/services/KAFKA/components/KAFKA_BROKER?fields=metrics/kafka/log/LogFlushStats/LogFlushRateAndTimeMs/1MinuteRate[{fromSeconds},{toSeconds},{stepSeconds}]',
  1057. 'mock': ''
  1058. },
  1059. 'service.metrics.kafka.server.ReplicaManager': {
  1060. 'real': '/clusters/{clusterName}/services/KAFKA/components/KAFKA_BROKER?fields=metrics/kafka/server/ReplicaManager/PartitionCount[{fromSeconds},{toSeconds},{stepSeconds}],metrics/kafka/server/ReplicaManager/UnderReplicatedPartitions[{fromSeconds},{toSeconds},{stepSeconds}],metrics/kafka/server/BrokerTopicMetrics/ReplicaManager/LeaderCount[{fromSeconds},{toSeconds},{stepSeconds}]',
  1061. 'mock': ''
  1062. },
  1063. 'service.metrics.kafka.server.ReplicaFetcherManager': {
  1064. 'real': '/clusters/{clusterName}/services/KAFKA/components/KAFKA_BROKER?fields=metrics/kafka/server/ReplicaFetcherManager/Replica-MaxLag[{fromSeconds},{toSeconds},{stepSeconds}]',
  1065. 'mock': ''
  1066. },
  1067. 'service.metrics.storm.nimbus': {
  1068. 'real': '/clusters/{clusterName}/services/STORM/components/NIMBUS?fields={metricsTemplate}',
  1069. 'mock': ''
  1070. },
  1071. 'dashboard.cluster_metrics.cpu': {
  1072. 'real': '/clusters/{clusterName}/?fields=metrics/cpu[{fromSeconds},{toSeconds},{stepSeconds}]',
  1073. 'mock': '/data/cluster_metrics/cpu_1hr.json',
  1074. 'testInProduction': true
  1075. },
  1076. 'dashboard.cluster_metrics.load': {
  1077. 'real': '/clusters/{clusterName}/?fields=metrics/load[{fromSeconds},{toSeconds},{stepSeconds}]',
  1078. 'mock': '/data/cluster_metrics/load_1hr.json',
  1079. 'testInProduction': true
  1080. },
  1081. 'dashboard.cluster_metrics.memory': {
  1082. 'real': '/clusters/{clusterName}/?fields=metrics/memory[{fromSeconds},{toSeconds},{stepSeconds}]',
  1083. 'mock': '/data/cluster_metrics/memory_1hr.json',
  1084. 'testInProduction': true
  1085. },
  1086. 'dashboard.cluster_metrics.network': {
  1087. 'real': '/clusters/{clusterName}/?fields=metrics/network[{fromSeconds},{toSeconds},{stepSeconds}]',
  1088. 'mock': '/data/cluster_metrics/network_1hr.json',
  1089. 'testInProduction': true
  1090. },
  1091. 'host.metrics.cpu': {
  1092. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/cpu/cpu_user[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_wio[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_nice[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_aidle[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_system[{fromSeconds},{toSeconds},{stepSeconds}],metrics/cpu/cpu_idle[{fromSeconds},{toSeconds},{stepSeconds}]',
  1093. 'mock': '/data/hosts/metrics/cpu.json',
  1094. 'testInProduction': true
  1095. },
  1096. 'host.metrics.disk': {
  1097. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/disk/disk_total[{fromSeconds},{toSeconds},{stepSeconds}],metrics/disk/disk_free[{fromSeconds},{toSeconds},{stepSeconds}]',
  1098. 'mock': '/data/hosts/metrics/disk.json',
  1099. 'testInProduction': true
  1100. },
  1101. 'host.metrics.load': {
  1102. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/load/load_fifteen[{fromSeconds},{toSeconds},{stepSeconds}],metrics/load/load_one[{fromSeconds},{toSeconds},{stepSeconds}],metrics/load/load_five[{fromSeconds},{toSeconds},{stepSeconds}]',
  1103. 'mock': '/data/hosts/metrics/load.json',
  1104. 'testInProduction': true
  1105. },
  1106. 'host.metrics.memory': {
  1107. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/memory/swap_free[{fromSeconds},{toSeconds},{stepSeconds}],metrics/memory/mem_shared[{fromSeconds},{toSeconds},{stepSeconds}],metrics/memory/mem_free[{fromSeconds},{toSeconds},{stepSeconds}],metrics/memory/mem_cached[{fromSeconds},{toSeconds},{stepSeconds}],metrics/memory/mem_buffers[{fromSeconds},{toSeconds},{stepSeconds}]',
  1108. 'mock': '/data/hosts/metrics/memory.json',
  1109. 'testInProduction': true
  1110. },
  1111. 'host.metrics.network': {
  1112. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/network/bytes_in[{fromSeconds},{toSeconds},{stepSeconds}],metrics/network/bytes_out[{fromSeconds},{toSeconds},{stepSeconds}],metrics/network/pkts_in[{fromSeconds},{toSeconds},{stepSeconds}],metrics/network/pkts_out[{fromSeconds},{toSeconds},{stepSeconds}]',
  1113. 'mock': '/data/hosts/metrics/network.json',
  1114. 'testInProduction': true
  1115. },
  1116. 'host.metrics.processes': {
  1117. 'real': '/clusters/{clusterName}/hosts/{hostName}?fields=metrics/process/proc_total[{fromSeconds},{toSeconds},{stepSeconds}],metrics/process/proc_run[{fromSeconds},{toSeconds},{stepSeconds}]',
  1118. 'mock': '/data/hosts/metrics/processes.json',
  1119. 'testInProduction': true
  1120. },
  1121. 'admin.security_status': {
  1122. 'real': '/clusters/{clusterName}?fields=Clusters/security_type',
  1123. 'mock': '',
  1124. 'format': function () {
  1125. return {
  1126. timeout: 10000
  1127. };
  1128. }
  1129. },
  1130. 'settings.get.user_pref': {
  1131. 'real': '/persist/{key}',
  1132. 'mock': '/data/user_settings/{key}.json'
  1133. },
  1134. 'settings.post.user_pref': {
  1135. 'real': '/persist',
  1136. 'mock': '',
  1137. 'type': 'POST',
  1138. 'format': function (data) {
  1139. return {
  1140. data: JSON.stringify(data.keyValuePair)
  1141. }
  1142. }
  1143. },
  1144. 'cluster.load_cluster_name': {
  1145. 'real': '/clusters',
  1146. 'mock': '/data/clusters/info.json'
  1147. },
  1148. 'cluster.load_last_upgrade': {
  1149. 'real': '/clusters/{clusterName}/upgrades?fields=Upgrade/request_status,Upgrade/request_id,Upgrade/to_version,Upgrade/direction',
  1150. 'mock': '/data/stack_versions/upgrades.json'
  1151. },
  1152. 'cluster.update_upgrade_version': {
  1153. 'real': '/stacks/{stackName}/versions?fields=services/StackServices,Versions',
  1154. 'mock': '/data/wizard/stack/stacks.json',
  1155. 'format': function (data) {
  1156. return {
  1157. data: data.data
  1158. };
  1159. }
  1160. },
  1161. 'cluster.load_repositories': {
  1162. 'real': '/stacks/{stackName}/versions/{stackVersion}/operating_systems?fields=repositories/*',
  1163. 'mock': '/data/stacks/HDP-2.1/operating_systems.json',
  1164. 'format': function (data) {
  1165. return {
  1166. data: data.data
  1167. };
  1168. }
  1169. },
  1170. 'cluster.load_detailed_repo_version': {
  1171. 'real': '/clusters/{clusterName}/stack_versions?ClusterStackVersions/state=CURRENT&fields=repository_versions/RepositoryVersions/repository_version&minimal_response=true',
  1172. 'mock': '/data/stack_versions/stack_version_all.json'
  1173. },
  1174. 'cluster.save_provisioning_state': {
  1175. 'real': '/clusters/{clusterName}',
  1176. 'type': 'PUT',
  1177. 'format': function (data) {
  1178. return {
  1179. data: JSON.stringify({
  1180. "Clusters": {
  1181. "provisioning_state": data.state
  1182. }
  1183. })
  1184. };
  1185. }
  1186. },
  1187. 'admin.high_availability.polling': {
  1188. 'real': '/clusters/{clusterName}/requests/{requestId}?fields=tasks/*,Requests/*',
  1189. 'mock': '/data/background_operations/host_upgrade_tasks.json'
  1190. },
  1191. 'admin.high_availability.getNnCheckPointStatus': {
  1192. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/NAMENODE',
  1193. 'mock': ''
  1194. },
  1195. 'admin.high_availability.getJnCheckPointStatus': {
  1196. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/JOURNALNODE?fields=metrics',
  1197. 'mock': ''
  1198. },
  1199. 'admin.high_availability.getHostComponent': {
  1200. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/{componentName}',
  1201. 'mock': ''
  1202. },
  1203. 'admin.high_availability.create_component': {
  1204. 'real': '/clusters/{clusterName}/hosts?Hosts/host_name={hostName}',
  1205. 'mock': '',
  1206. 'type': 'POST',
  1207. 'format': function (data) {
  1208. return {
  1209. data: JSON.stringify({
  1210. "host_components": [
  1211. {
  1212. "HostRoles": {
  1213. "component_name": data.componentName
  1214. }
  1215. }
  1216. ]
  1217. })
  1218. }
  1219. }
  1220. },
  1221. 'admin.high_availability.create_journalnode': {
  1222. 'real': '/clusters/{clusterName}/services?ServiceInfo/service_name=HDFS',
  1223. 'mock': '',
  1224. 'type': 'POST',
  1225. 'format': function () {
  1226. return {
  1227. data: JSON.stringify({
  1228. "components": [
  1229. {
  1230. "ServiceComponentInfo": {
  1231. "component_name": "JOURNALNODE"
  1232. }
  1233. }
  1234. ]
  1235. })
  1236. }
  1237. }
  1238. },
  1239. 'common.create_component': {
  1240. 'real': '/clusters/{clusterName}/services?ServiceInfo/service_name={serviceName}',
  1241. 'mock': '',
  1242. 'type': 'POST',
  1243. 'format': function (data) {
  1244. return {
  1245. data: JSON.stringify({
  1246. "components": [
  1247. {
  1248. "ServiceComponentInfo": {
  1249. "component_name": data.componentName
  1250. }
  1251. }
  1252. ]
  1253. })
  1254. }
  1255. }
  1256. },
  1257. 'admin.high_availability.create_zkfc': {
  1258. 'real': '/clusters/{clusterName}/services?ServiceInfo/service_name=HDFS',
  1259. 'mock': '',
  1260. 'type': 'POST',
  1261. 'format': function () {
  1262. return {
  1263. data: JSON.stringify({
  1264. "components": [
  1265. {
  1266. "ServiceComponentInfo": {
  1267. "component_name": "ZKFC"
  1268. }
  1269. }
  1270. ]
  1271. })
  1272. }
  1273. }
  1274. },
  1275. 'admin.high_availability.load_configs': {
  1276. 'real': '/clusters/{clusterName}/configurations?(type=core-site&tag={coreSiteTag})|(type=hdfs-site&tag={hdfsSiteTag})',
  1277. 'mock': ''
  1278. },
  1279. 'admin.high_availability.save_configs': {
  1280. 'real': '/clusters/{clusterName}',
  1281. 'mock': '',
  1282. 'type': 'PUT',
  1283. 'format': function (data) {
  1284. return {
  1285. data: JSON.stringify({
  1286. Clusters: {
  1287. desired_config: {
  1288. "type": data.siteName,
  1289. "tag": 'version' + (new Date).getTime(),
  1290. "properties": data.properties
  1291. }
  1292. }
  1293. })
  1294. }
  1295. }
  1296. },
  1297. 'admin.high_availability.load_hbase_configs': {
  1298. 'real': '/clusters/{clusterName}/configurations?type=hbase-site&tag={hbaseSiteTag}',
  1299. 'mock': ''
  1300. },
  1301. 'admin.security.cluster_configs': {
  1302. 'real': '/clusters/{clusterName}',
  1303. 'mock': '',
  1304. 'format': function () {
  1305. return {
  1306. timeout: 10000
  1307. };
  1308. }
  1309. },
  1310. 'admin.get.all_configurations': {
  1311. 'real': '/clusters/{clusterName}/configurations?{urlParams}',
  1312. 'mock': '',
  1313. 'format': function () {
  1314. return {
  1315. timeout: 10000
  1316. };
  1317. }
  1318. },
  1319. 'admin.security.add.cluster_configs': {
  1320. 'real': '/clusters/{clusterName}' + '?fields=Clusters/desired_configs',
  1321. 'mock': '',
  1322. 'format': function () {
  1323. return {
  1324. timeout: 10000
  1325. };
  1326. }
  1327. },
  1328. 'kerberos.session.state': {
  1329. 'real': '/clusters/{clusterName}/services/KERBEROS?fields=Services/attributes/kdc_validation_result,Services/attributes/kdc_validation_failure_details',
  1330. 'mock': ''
  1331. },
  1332. 'admin.kerberize.cluster': {
  1333. 'type': 'PUT',
  1334. 'real': '/clusters/{clusterName}',
  1335. 'mock': '/data/wizard/kerberos/kerberize_cluster.json',
  1336. 'format' : function (data) {
  1337. return {
  1338. data: JSON.stringify(data.data)
  1339. }
  1340. }
  1341. },
  1342. 'admin.unkerberize.cluster': {
  1343. 'type': 'PUT',
  1344. 'real': '/clusters/{clusterName}',
  1345. 'format': function (data) {
  1346. return {
  1347. data: JSON.stringify({
  1348. Clusters: {
  1349. security_type: "NONE"
  1350. }
  1351. })
  1352. }
  1353. }
  1354. },
  1355. 'get.cluster.artifact': {
  1356. 'real': '/clusters/{clusterName}/artifacts/{artifactName}?fields=artifact_data',
  1357. 'mock': '/data/wizard/kerberos/stack_descriptors.json'
  1358. },
  1359. 'admin.kerberize.stack_descriptor': {
  1360. 'real': '/stacks/{stackName}/versions/{stackVersionNumber}/artifacts/kerberos_descriptor?fields=artifact_data',
  1361. 'mock': '/data/wizard/kerberos/stack_descriptors.json'
  1362. },
  1363. 'admin.kerberize.cluster_descriptor': {
  1364. 'real': '/clusters/{clusterName}/artifacts/kerberos_descriptor?fields=artifact_data',
  1365. 'mock': '/data/wizard/kerberos/stack_descriptors.json'
  1366. },
  1367. 'admin.kerberos.cluster.artifact.create': {
  1368. 'type': 'POST',
  1369. 'real': '/clusters/{clusterName}/artifacts/{artifactName}',
  1370. 'format' : function (data) {
  1371. return {
  1372. data: JSON.stringify(data.data)
  1373. }
  1374. }
  1375. },
  1376. 'admin.kerberos.cluster.artifact.update': {
  1377. 'type': 'PUT',
  1378. 'real': '/clusters/{clusterName}/artifacts/{artifactName}',
  1379. 'format' : function (data) {
  1380. return {
  1381. data: JSON.stringify(data.data)
  1382. }
  1383. }
  1384. },
  1385. 'admin.poll.kerberize.cluster.request': {
  1386. 'real': '/clusters/{clusterName}/requests/{requestId}?fields=stages/Stage/context,stages/Stage/status,stages/Stage/progress_percent,stages/tasks/*,Requests/*',
  1387. 'mock': '/data/wizard/kerberos/kerberize_cluster.json'
  1388. },
  1389. 'admin.stack_upgrade.run_upgrade': {
  1390. 'real': '/clusters/{clusterName}',
  1391. 'mock': '',
  1392. 'format': function (data) {
  1393. return {
  1394. type: 'PUT',
  1395. data: data.data
  1396. };
  1397. }
  1398. },
  1399. 'admin.user.create': {
  1400. 'real': '/users/{user}',
  1401. 'mock': '/data/users/users.json',
  1402. 'format': function (data) {
  1403. return {
  1404. type: 'POST',
  1405. data: JSON.stringify(data.data)
  1406. }
  1407. }
  1408. },
  1409. 'admin.user.edit': {
  1410. 'real': '/users/{user}',
  1411. 'mock': '/data/users/users.json',
  1412. 'format': function (data) {
  1413. return {
  1414. type: 'PUT',
  1415. data: data.data
  1416. }
  1417. }
  1418. },
  1419. 'admin.stack_upgrade.do_poll': {
  1420. 'real': '/clusters/{cluster}/requests/{requestId}?fields=tasks/*',
  1421. 'mock': '/data/wizard/{mock}'
  1422. },
  1423. 'admin.upgrade.data': {
  1424. 'real': '/clusters/{clusterName}/upgrades/{id}?upgrade_groups/UpgradeGroup/status!=PENDING&fields=' +
  1425. 'Upgrade/progress_percent,Upgrade/request_context,Upgrade/request_status,Upgrade/direction,' +
  1426. 'upgrade_groups/UpgradeGroup,' +
  1427. 'upgrade_groups/upgrade_items/UpgradeItem/status,' +
  1428. 'upgrade_groups/upgrade_items/UpgradeItem/context,' +
  1429. 'upgrade_groups/upgrade_items/UpgradeItem/group_id,' +
  1430. 'upgrade_groups/upgrade_items/UpgradeItem/progress_percent,' +
  1431. 'upgrade_groups/upgrade_items/UpgradeItem/request_id,' +
  1432. 'upgrade_groups/upgrade_items/UpgradeItem/skippable,' +
  1433. 'upgrade_groups/upgrade_items/UpgradeItem/stage_id,' +
  1434. 'upgrade_groups/upgrade_items/UpgradeItem/status,' +
  1435. 'upgrade_groups/upgrade_items/UpgradeItem/text&' +
  1436. 'minimal_response=true',
  1437. 'mock': '/data/stack_versions/upgrade.json'
  1438. },
  1439. 'admin.upgrade.state': {
  1440. 'real': '/clusters/{clusterName}/upgrades/{id}?fields=Upgrade',
  1441. 'mock': '/data/stack_versions/upgrade.json'
  1442. },
  1443. 'admin.upgrade.upgrade_item': {
  1444. 'real': '/clusters/{clusterName}/upgrades/{upgradeId}/upgrade_groups/{groupId}/upgrade_items/{stageId}?fields=' +
  1445. 'UpgradeItem/group_id,' +
  1446. 'UpgradeItem/stage_id,' +
  1447. 'tasks/Tasks/*&' +
  1448. 'minimal_response=true',
  1449. 'mock': '/data/stack_versions/upgrade_item.json'
  1450. },
  1451. 'admin.upgrade.start': {
  1452. 'real': '/clusters/{clusterName}/upgrades',
  1453. 'mock': '/data/stack_versions/start_upgrade.json',
  1454. 'type': 'POST',
  1455. 'format': function (data) {
  1456. return {
  1457. data: JSON.stringify({
  1458. "Upgrade": {
  1459. "repository_version": data.value
  1460. }
  1461. })
  1462. }
  1463. }
  1464. },
  1465. 'admin.downgrade.start': {
  1466. 'real': '/clusters/{clusterName}/upgrades',
  1467. 'mock': '/data/stack_versions/start_upgrade.json',
  1468. 'type': 'POST',
  1469. 'format': function (data) {
  1470. return {
  1471. data: JSON.stringify({
  1472. "Upgrade": {
  1473. "repository_version": data.value,
  1474. "force_downgrade": true
  1475. }
  1476. })
  1477. }
  1478. }
  1479. },
  1480. 'admin.upgrade.abort': {
  1481. 'real': '/clusters/{clusterName}/upgrades/{upgradeId}',
  1482. 'mock': '',
  1483. 'type': 'PUT',
  1484. 'format': function (data) {
  1485. return {
  1486. data: JSON.stringify({
  1487. "Upgrade": {
  1488. "request_status": "ABORTED"
  1489. }
  1490. })
  1491. }
  1492. }
  1493. },
  1494. 'admin.upgrade.upgradeItem.setState': {
  1495. 'real': '/clusters/{clusterName}/upgrades/{upgradeId}/upgrade_groups/{groupId}/upgrade_items/{itemId}',
  1496. 'mock': '',
  1497. type: 'PUT',
  1498. 'format': function (data) {
  1499. return {
  1500. data: JSON.stringify({
  1501. "UpgradeItem" : {
  1502. "status" : data.status
  1503. }
  1504. })
  1505. };
  1506. }
  1507. },
  1508. 'admin.stack_versions.all': {
  1509. 'real': '/clusters/{clusterName}/stack_versions?fields=ClusterStackVersions/*,repository_versions/RepositoryVersions/*&minimal_response=true',
  1510. 'mock': '/data/stack_versions/stack_version_all.json'
  1511. },
  1512. 'admin.stack_version.install.repo_version': {
  1513. 'real': '/clusters/{clusterName}/stack_versions',
  1514. 'format': function (data) {
  1515. return {
  1516. type: 'POST',
  1517. data: JSON.stringify({
  1518. ClusterStackVersions: data.ClusterStackVersions
  1519. })
  1520. }
  1521. },
  1522. 'mock': ''
  1523. },
  1524. 'admin.stack_versions.edit.repo': {
  1525. 'real': '/stacks/{stackName}/versions/{stackVersion}/repository_versions/{repoVersionId}',
  1526. 'mock': '',
  1527. 'type': 'PUT',
  1528. 'format': function (data) {
  1529. return {
  1530. data: JSON.stringify(data.repoVersion)
  1531. }
  1532. }
  1533. },
  1534. 'admin.stack_versions.validate.repo': {
  1535. 'real': '/stacks/{stackName}/versions/{stackVersion}/operating_systems/{osType}/repositories/{repoId}?validate_only=true',
  1536. 'mock': '',
  1537. 'type': 'POST',
  1538. 'format': function (data) {
  1539. return {
  1540. data: JSON.stringify({
  1541. "Repositories": {
  1542. "base_url": data.baseUrl
  1543. }
  1544. })
  1545. }
  1546. }
  1547. },
  1548. 'admin.rolling_upgrade.pre_upgrade_check': {
  1549. 'real': '/clusters/{clusterName}/rolling_upgrades_check?fields=*&UpgradeChecks/repository_version={value}',
  1550. 'mock': '/data/stack_versions/pre_upgrade_check.json'
  1551. },
  1552. 'admin.kerberos_security.checks': {
  1553. //TODO when api will be known
  1554. 'real': '',
  1555. 'mock': '/data/stack_versions/pre_upgrade_check.json'
  1556. },
  1557. 'admin.kerberos_security.test_connection': {
  1558. 'real': '/kdc_check/{kdcHostname}',
  1559. 'mock': '',
  1560. 'format': function () {
  1561. return {
  1562. dataType: 'text'
  1563. };
  1564. }
  1565. },
  1566. 'admin.kerberos_security.regenerate_keytabs': {
  1567. 'real': '/clusters/{clusterName}?regenerate_keytabs={type}',
  1568. 'mock': '',
  1569. 'type': 'PUT',
  1570. 'format': function (data) {
  1571. return {
  1572. data: JSON.stringify({
  1573. "Clusters" : {
  1574. "security_type" : "KERBEROS"
  1575. }
  1576. })
  1577. }
  1578. }
  1579. },
  1580. 'wizard.advanced_repositories.valid_url': {
  1581. 'real': '/stacks/{stackName}/versions/{stackVersion}/operating_systems/{osType}/repositories/{repoId}',
  1582. 'mock': '',
  1583. 'type': 'PUT',
  1584. 'format': function (data) {
  1585. return {
  1586. data: JSON.stringify(data.data)
  1587. }
  1588. }
  1589. },
  1590. 'wizard.service_components': {
  1591. 'real': '{stackUrl}/services?fields=StackServices/*,components/*,components/dependencies/Dependencies/scope,artifacts/Artifacts/artifact_name',
  1592. 'mock': '/data/stacks/HDP-2.1/service_components.json',
  1593. 'format': function (data) {
  1594. return {
  1595. timeout: 10000
  1596. };
  1597. }
  1598. },
  1599. 'wizard.step9.installer.get_host_status': {
  1600. 'real': '/clusters/{cluster}/hosts?fields=Hosts/host_state,host_components/HostRoles/state',
  1601. 'mock': '/data/wizard/deploy/5_hosts/get_host_state.json'
  1602. },
  1603. 'wizard.step9.load_log': {
  1604. 'real': '/clusters/{cluster}/requests/{requestId}?fields=tasks/Tasks/command,tasks/Tasks/exit_code,tasks/Tasks/start_time,tasks/Tasks/end_time,tasks/Tasks/host_name,tasks/Tasks/id,tasks/Tasks/role,tasks/Tasks/status&minimal_response=true',
  1605. 'mock': '/data/wizard/deploy/5_hosts/poll_{numPolls}.json',
  1606. 'format': function () {
  1607. return {
  1608. dataType: 'text'
  1609. };
  1610. }
  1611. },
  1612. 'wizard.step8.existing_cluster_names': {
  1613. 'real': '/clusters',
  1614. 'mock': ''
  1615. },
  1616. 'wizard.step8.create_cluster': {
  1617. 'real': '/clusters/{cluster}',
  1618. 'mock': '',
  1619. 'format': function (data) {
  1620. return {
  1621. type: 'POST',
  1622. dataType: 'text',
  1623. data: data.data
  1624. }
  1625. }
  1626. },
  1627. 'wizard.step8.create_selected_services': {
  1628. 'type': 'POST',
  1629. 'real': '/clusters/{cluster}/services',
  1630. 'mock': '/data/stacks/HDP-2.1/recommendations.json',
  1631. 'format': function (data) {
  1632. return {
  1633. dataType: 'text',
  1634. data: data.data
  1635. }
  1636. }
  1637. },
  1638. 'wizard.step8.create_components': {
  1639. 'real': '/clusters/{cluster}/services?ServiceInfo/service_name={serviceName}',
  1640. 'mock': '',
  1641. 'format': function (data) {
  1642. return {
  1643. type: 'POST',
  1644. dataType: 'text',
  1645. data: data.data
  1646. }
  1647. }
  1648. },
  1649. 'wizard.step8.register_host_to_cluster': {
  1650. 'real': '/clusters/{cluster}/hosts',
  1651. 'mock': '',
  1652. 'format': function (data) {
  1653. return {
  1654. type: 'POST',
  1655. dataType: 'text',
  1656. data: data.data
  1657. }
  1658. }
  1659. },
  1660. 'wizard.step8.register_host_to_component': {
  1661. 'real': '/clusters/{cluster}/hosts',
  1662. 'mock': '',
  1663. 'format': function (data) {
  1664. return {
  1665. type: 'POST',
  1666. dataType: 'text',
  1667. data: data.data
  1668. }
  1669. }
  1670. },
  1671. 'wizard.step8.apply_configuration_groups': {
  1672. 'real': '/clusters/{cluster}/config_groups',
  1673. 'mock': '',
  1674. 'format': function (data) {
  1675. return {
  1676. type: 'POST',
  1677. dataType: 'text',
  1678. data: data.data
  1679. }
  1680. }
  1681. },
  1682. 'wizard.step8.set_local_repos': {
  1683. 'real': '{stackVersionURL}/operating_systems/{osType}/repositories/{repoId}',
  1684. 'mock': '',
  1685. 'format': function (data) {
  1686. return {
  1687. type: 'PUT',
  1688. dataType: 'text',
  1689. data: data.data
  1690. }
  1691. }
  1692. },
  1693. 'wizard.step3.jdk_check': {
  1694. 'real': '/requests',
  1695. 'mock': '',
  1696. 'format': function (data) {
  1697. return {
  1698. type: 'POST',
  1699. data: JSON.stringify({
  1700. "RequestInfo": {
  1701. "context": "Check hosts",
  1702. "action": "check_host",
  1703. "parameters": {
  1704. "threshold": "60",
  1705. "java_home": data.java_home,
  1706. "jdk_location": data.jdk_location,
  1707. "check_execute_list": "java_home_check"
  1708. }
  1709. },
  1710. "Requests/resource_filters": [{
  1711. "hosts": data.host_names
  1712. }]
  1713. })
  1714. }
  1715. }
  1716. },
  1717. 'wizard.step3.jdk_check.get_results': {
  1718. 'real': '/requests/{requestIndex}?fields=*,tasks/Tasks/host_name,tasks/Tasks/status,tasks/Tasks/structured_out',
  1719. 'mock': '/data/requests/host_check/jdk_check_results.json'
  1720. },
  1721. 'wizard.step3.host_info': {
  1722. 'real': '/hosts?fields=Hosts/total_mem,Hosts/cpu_count,Hosts/disk_info,Hosts/last_agent_env,Hosts/host_name,Hosts/os_type,Hosts/os_arch,Hosts/os_family,Hosts/ip',
  1723. 'mock': '/data/wizard/bootstrap/two_hosts_information.json',
  1724. 'format': function () {
  1725. return {
  1726. contentType: 'application/json'
  1727. };
  1728. }
  1729. },
  1730. 'wizard.loadrecommendations': {
  1731. 'real': '{stackVersionUrl}/recommendations',
  1732. 'mock': '/data/stacks/HDP-2.1/recommendations.json',
  1733. 'type': 'POST',
  1734. 'format': function (data) {
  1735. var q = {
  1736. hosts: data.hosts,
  1737. services: data.services,
  1738. recommend: data.recommend
  1739. };
  1740. if (data.recommendations) {
  1741. q.recommendations = data.recommendations;
  1742. }
  1743. return {
  1744. data: JSON.stringify(q)
  1745. }
  1746. }
  1747. },
  1748. // TODO: merge with wizard.loadrecommendations query
  1749. 'config.recommendations': {
  1750. 'real': '{stackVersionUrl}/recommendations',
  1751. 'mock': '/data/configurations/recommendations/configuration_dependencies.json',
  1752. //'mock': '/data/stacks/HDP-2.1/recommendations_configs.json',
  1753. 'type': 'POST',
  1754. 'format': function (data) {
  1755. return {
  1756. data: JSON.stringify(data.dataToSend)
  1757. }
  1758. }
  1759. },
  1760. 'config.validations': {
  1761. 'real': '{stackVersionUrl}/validations',
  1762. 'mock': '/data/stacks/HDP-2.1/validations.json',
  1763. 'type': 'POST',
  1764. 'format': function (data) {
  1765. return {
  1766. data: JSON.stringify({
  1767. hosts: data.hosts,
  1768. services: data.services,
  1769. validate: data.validate,
  1770. recommendations: data.recommendations
  1771. })
  1772. }
  1773. }
  1774. },
  1775. 'preinstalled.checks': {
  1776. 'real': '/requests',
  1777. 'mock': '',
  1778. 'format': function (data) {
  1779. return {
  1780. type: 'POST',
  1781. data: JSON.stringify({
  1782. "RequestInfo": data.RequestInfo,
  1783. "Requests/resource_filters": [data.resource_filters]
  1784. })
  1785. }
  1786. }
  1787. },
  1788. 'preinstalled.checks.tasks': {
  1789. 'real': '/requests/{requestId}?fields=tasks/Tasks,Requests/inputs,Requests/request_status',
  1790. 'mock': '/data/requests/host_check/1.json'
  1791. },
  1792. 'wizard.step3.rerun_checks': {
  1793. 'real': '/hosts?fields=Hosts/last_agent_env',
  1794. 'mock': '/data/wizard/bootstrap/two_hosts_information.json',
  1795. 'format': function () {
  1796. return {
  1797. contentType: 'application/json'
  1798. };
  1799. }
  1800. },
  1801. 'wizard.step3.bootstrap': {
  1802. 'real': '/bootstrap/{bootRequestId}',
  1803. 'mock': '/data/wizard/bootstrap/poll_{numPolls}.json'
  1804. },
  1805. 'wizard.step3.is_hosts_registered': {
  1806. 'real': '/hosts?fields=Hosts/host_status',
  1807. 'mock': '/data/wizard/bootstrap/single_host_registration.json'
  1808. },
  1809. 'wizard.stacks': {
  1810. 'real': '/stacks',
  1811. 'mock': '/data/wizard/stack/stacks2.json'
  1812. },
  1813. 'wizard.stacks_versions': {
  1814. 'real': '/stacks/{stackName}/versions?fields=Versions,operating_systems/repositories/Repositories',
  1815. 'mock': '/data/wizard/stack/{stackName}_versions.json'
  1816. },
  1817. 'wizard.launch_bootstrap': {
  1818. 'real': '/bootstrap',
  1819. 'mock': '/data/wizard/bootstrap/bootstrap.json',
  1820. 'type': 'POST',
  1821. 'format': function (data) {
  1822. return {
  1823. contentType: 'application/json',
  1824. data: data.bootStrapData,
  1825. popup: data.popup
  1826. }
  1827. }
  1828. },
  1829. 'router.login': {
  1830. 'real': '/users/{loginName}?fields=*,privileges/PrivilegeInfo/cluster_name,privileges/PrivilegeInfo/permission_name',
  1831. 'mock': '/data/users/user_{usr}.json',
  1832. 'format': function (data) {
  1833. var statusCode = jQuery.extend({}, require('data/statusCodes'));
  1834. statusCode['403'] = function () {
  1835. console.log("Error code 403: Forbidden.");
  1836. };
  1837. return {
  1838. statusCode: statusCode
  1839. };
  1840. }
  1841. },
  1842. 'users.all': {
  1843. real: '/users/?fields=*',
  1844. mock: '/data/users/users.json'
  1845. },
  1846. 'users.privileges': {
  1847. real: '/privileges?fields=*',
  1848. mock: '/data/users/privileges.json'
  1849. },
  1850. 'router.user.privileges': {
  1851. real: '/privileges?PrivilegeInfo/principal_name={userName}&fields=*',
  1852. mock: '/data/users/privileges_{userName}.json'
  1853. },
  1854. 'router.login.clusters': {
  1855. 'real': '/clusters?fields=Clusters/provisioning_state',
  1856. 'mock': '/data/clusters/info.json'
  1857. },
  1858. 'router.logoff': {
  1859. 'real': '/logout',
  1860. 'mock': ''
  1861. },
  1862. 'ambari.service.load_jdk_name': {
  1863. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=RootServiceComponents/properties/jdk.name,RootServiceComponents/properties/java.home,RootServiceComponents/properties/jdk_location',
  1864. 'mock': '/data/requests/host_check/jdk_name.json'
  1865. },
  1866. 'ambari.service.load_server_version': {
  1867. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=RootServiceComponents/component_version,RootServiceComponents/properties/server.os_family&minimal_response=true',
  1868. 'mock': '/data/ambari_components/component_version.json'
  1869. },
  1870. 'ambari.service': {
  1871. 'real': '/services/AMBARI/components/AMBARI_SERVER',
  1872. 'mock': '/data/services/ambari_server.json'
  1873. },
  1874. 'ambari.service.load_server_clock': {
  1875. 'real': '/services/AMBARI/components/AMBARI_SERVER?fields=RootServiceComponents/server_clock',
  1876. 'mock': ''
  1877. },
  1878. 'config_groups.create': {
  1879. 'real': '/clusters/{clusterName}/config_groups',
  1880. 'mock': '',
  1881. 'format': function (data) {
  1882. return {
  1883. type: 'POST',
  1884. data: JSON.stringify([{
  1885. "ConfigGroup": {
  1886. "group_name": data.group_name,
  1887. "tag": data.service_id,
  1888. "description": data.description,
  1889. "desired_configs": data.desired_configs,
  1890. "hosts": data.hosts
  1891. }
  1892. }])
  1893. }
  1894. }
  1895. },
  1896. 'config_groups.update': {
  1897. 'real': '/clusters/{clusterName}/config_groups/{id}',
  1898. 'mock': '',
  1899. 'format': function (data) {
  1900. return {
  1901. type: 'PUT',
  1902. data: JSON.stringify(data.data)
  1903. }
  1904. }
  1905. },
  1906. 'rolling_restart.post': {
  1907. 'real': '/clusters/{clusterName}/request_schedules',
  1908. 'mock': '',
  1909. 'format': function (data) {
  1910. return {
  1911. type: 'POST',
  1912. data: JSON.stringify([{
  1913. "RequestSchedule": {
  1914. "batch": [{
  1915. "requests": data.batches
  1916. }, {
  1917. "batch_settings": {
  1918. "batch_separation_in_seconds": data.intervalTimeSeconds,
  1919. "task_failure_tolerance": data.tolerateSize
  1920. }
  1921. }]
  1922. }
  1923. }])
  1924. }
  1925. }
  1926. },
  1927. 'request_schedule.get': {
  1928. 'real': '/clusters/{clusterName}/request_schedules/{request_schedule_id}',
  1929. 'mock': ''
  1930. },
  1931. 'restart.hostComponents': {
  1932. 'real': '/clusters/{clusterName}/requests',
  1933. 'mock': '',
  1934. 'format': function (data) {
  1935. return {
  1936. type: 'POST',
  1937. data: JSON.stringify({
  1938. "RequestInfo": {
  1939. "command": "RESTART",
  1940. "context": data.context,
  1941. "operation_level": data.operation_level
  1942. },
  1943. "Requests/resource_filters": data.resource_filters
  1944. })
  1945. }
  1946. }
  1947. },
  1948. 'bulk_request.decommission': {
  1949. 'real': '/clusters/{clusterName}/requests',
  1950. 'mock': '',
  1951. 'format': function (data) {
  1952. return {
  1953. type: 'POST',
  1954. data: JSON.stringify({
  1955. 'RequestInfo': {
  1956. 'context': data.context,
  1957. 'command': 'DECOMMISSION',
  1958. 'parameters': data.parameters,
  1959. 'operation_level': {
  1960. 'level': "CLUSTER",
  1961. 'cluster_name': data.clusterName
  1962. }
  1963. },
  1964. "Requests/resource_filters": [{"service_name": data.serviceName, "component_name": data.componentName}]
  1965. })
  1966. }
  1967. }
  1968. },
  1969. 'bulk_request.hosts.passive_state': {
  1970. 'real': '/clusters/{clusterName}/hosts',
  1971. 'mock': '',
  1972. 'format': function (data) {
  1973. return {
  1974. type: 'PUT',
  1975. data: JSON.stringify({
  1976. RequestInfo: {
  1977. context: data.requestInfo,
  1978. query: 'Hosts/host_name.in(' + data.hostNames + ')'
  1979. },
  1980. Body: {
  1981. Hosts: {
  1982. maintenance_state: data.passive_state
  1983. }
  1984. }
  1985. })
  1986. }
  1987. }
  1988. },
  1989. 'bulk_request.hosts.update_rack_id': {
  1990. 'real': '/clusters/{clusterName}/hosts',
  1991. 'mock': '',
  1992. 'format': function(data) {
  1993. return {
  1994. type: 'PUT',
  1995. data: JSON.stringify({
  1996. RequestInfo: {
  1997. context: data.requestInfo,
  1998. query: 'Hosts/host_name.in(' + data.hostNames + ')'
  1999. },
  2000. Body: {
  2001. Hosts: {
  2002. rack_info: data.rackId
  2003. }
  2004. }
  2005. })
  2006. }
  2007. }
  2008. },
  2009. 'bulk_request.hosts.all_components.passive_state': {
  2010. 'real': '/clusters/{clusterName}/host_components',
  2011. 'mock': '',
  2012. 'format': function (data) {
  2013. return {
  2014. type: 'PUT',
  2015. data: JSON.stringify({
  2016. RequestInfo: {
  2017. context: data.requestInfo,
  2018. query: data.query
  2019. },
  2020. Body: {
  2021. HostRoles: {
  2022. maintenance_state: data.passive_state
  2023. }
  2024. }
  2025. })
  2026. }
  2027. }
  2028. },
  2029. 'views.info': {
  2030. 'real': '/views',
  2031. 'mock': '/data/views/views.json'
  2032. },
  2033. /**
  2034. * Get all instances of all views across versions
  2035. */
  2036. 'views.instances': {
  2037. 'real': '/views?fields=versions/instances/ViewInstanceInfo,versions/ViewVersionInfo/label&versions/ViewVersionInfo/system=false',
  2038. 'mock': '/data/views/instances.json'
  2039. },
  2040. 'host.host_component.flume.metrics': {
  2041. 'real': '/clusters/{clusterName}/hosts/{hostName}/host_components/FLUME_HANDLER?fields=metrics/flume/flume/{flumeComponent}/*',
  2042. 'mock': ''
  2043. },
  2044. 'host.host_component.flume.metrics.timeseries': {
  2045. 'real': '',
  2046. 'mock': '',
  2047. format: function (data) {
  2048. return {
  2049. url: data.url
  2050. }
  2051. }
  2052. },
  2053. 'host.host_components.filtered': {
  2054. 'real': '/clusters/{clusterName}/hosts?{fields}',
  2055. 'mock': '',
  2056. format: function (data) {
  2057. return {
  2058. headers: {
  2059. 'X-Http-Method-Override': 'GET'
  2060. },
  2061. type: 'POST',
  2062. data: JSON.stringify({
  2063. "RequestInfo": {"query": data.parameters}
  2064. })
  2065. };
  2066. }
  2067. },
  2068. 'host.status.counters': {
  2069. 'real': '/clusters/{clusterName}?fields=Clusters/health_report,Clusters/total_hosts,alerts_summary_hosts&minimal_response=true',
  2070. 'mock': '/data/hosts/HDP2/host_status_counters.json'
  2071. },
  2072. 'host.stack_versions.install': {
  2073. 'real': '/clusters/{clusterName}/hosts/{hostName}/stack_versions',
  2074. 'mock': '',
  2075. 'type': 'POST',
  2076. 'format': function (data) {
  2077. return {
  2078. data: JSON.stringify({
  2079. "HostStackVersions": {
  2080. "stack": data.version.get('stack'),
  2081. "version": data.version.get('version'),
  2082. "repository_version": data.version.get('repoVersion')
  2083. }
  2084. })
  2085. }
  2086. }
  2087. },
  2088. 'components.filter_by_status': {
  2089. 'real': '/clusters/{clusterName}/components?fields=host_components/HostRoles/host_name,ServiceComponentInfo/component_name,ServiceComponentInfo/started_count{urlParams}&minimal_response=true',
  2090. 'mock': ''
  2091. },
  2092. 'hosts.all.install': {
  2093. 'real': '/hosts?minimal_response=true',
  2094. 'mock': ''
  2095. },
  2096. 'hosts.all': {
  2097. 'real': '/clusters/{clusterName}/hosts?minimal_response=true',
  2098. 'mock': '/data/hosts/HDP2/hosts.json'
  2099. },
  2100. 'hosts.with_public_host_names': {
  2101. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/public_host_name&minimal_response=true',
  2102. 'mock': ''
  2103. },
  2104. 'hosts.for_quick_links': {
  2105. 'real': '/clusters/{clusterName}/hosts?Hosts/host_name.in({masterHosts})&fields=Hosts/public_host_name,host_components/HostRoles/component_name{urlParams}&minimal_response=true',
  2106. 'mock': '/data/hosts/quick_links.json'
  2107. },
  2108. 'hosts.confirmed.install': {
  2109. 'real': '/hosts?fields=Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem&minimal_response=true',
  2110. 'mock': ''
  2111. },
  2112. 'hosts.confirmed': {
  2113. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem,Hosts/os_type,Hosts/os_arch,Hosts/ip,host_components/HostRoles/state&minimal_response=true',
  2114. 'mock': '/data/hosts/HDP2/hosts.json'
  2115. },
  2116. 'host_components.all': {
  2117. 'real': '/clusters/{clusterName}/host_components?fields=HostRoles/host_name&minimal_response=true',
  2118. 'mock': ''
  2119. },
  2120. 'host_components.with_services_names': {
  2121. 'real': '/clusters/{clusterName}/host_components?fields=component/ServiceComponentInfo/service_name,HostRoles/host_name&minimal_response=true',
  2122. 'mock': ''
  2123. },
  2124. 'components.get_installed': {
  2125. 'real': '/clusters/{clusterName}/components',
  2126. 'mock': ''
  2127. },
  2128. 'hosts.heatmaps': {
  2129. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/rack_info,Hosts/host_name,Hosts/public_host_name,Hosts/os_type,Hosts/ip,host_components,metrics/disk,metrics/cpu/cpu_system,metrics/cpu/cpu_user,metrics/memory/mem_total,metrics/memory/mem_free&minimal_response=true',
  2130. 'mock': '/data/hosts/HDP2/hosts.json'
  2131. },
  2132. 'namenode.cpu_wio': {
  2133. 'real': '/clusters/{clusterName}/hosts/{nnHost}?fields=metrics/cpu',
  2134. 'mock': '/data/cluster_metrics/cpu.json'
  2135. },
  2136. 'custom_action.create': {
  2137. 'real': '/requests',
  2138. 'mock': '',
  2139. 'format': function (data) {
  2140. var requestInfo = {
  2141. context: 'Check host',
  2142. action: 'check_host',
  2143. parameters: {}
  2144. };
  2145. $.extend(true, requestInfo, data.requestInfo);
  2146. return {
  2147. type: 'POST',
  2148. data: JSON.stringify({
  2149. 'RequestInfo': requestInfo,
  2150. 'Requests/resource_filters': [{
  2151. hosts: data.filteredHosts.join(',')
  2152. }]
  2153. })
  2154. }
  2155. }
  2156. },
  2157. 'custom_action.request': {
  2158. 'real': '/requests/{requestId}/tasks/{taskId}',
  2159. 'mock': '/data/requests/1.json',
  2160. 'format': function (data) {
  2161. return {
  2162. requestId: data.requestId,
  2163. taskId: data.taskId || ''
  2164. }
  2165. }
  2166. },
  2167. 'hosts.high_availability.wizard': {
  2168. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem&minimal_response=true',
  2169. 'mock': ''
  2170. },
  2171. 'hosts.security.wizard': {
  2172. 'real': '/clusters/{clusterName}/hosts?fields=host_components/HostRoles/service_name&minimal_response=true',
  2173. 'mock': ''
  2174. },
  2175. 'host_component.installed.on_hosts': {
  2176. 'real': '/clusters/{clusterName}/host_components?HostRoles/component_name={componentName}&HostRoles/host_name.in({hostNames})&fields=HostRoles/host_name&minimal_response=true',
  2177. 'mock': ''
  2178. },
  2179. 'hosts.by_component.one': {
  2180. 'real': '/clusters/{clusterName}/hosts?host_components/HostRoles/component_name.in({componentNames})&fields=host_components,Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem,Hosts/ip,Hosts/os_type,Hosts/os_arch,Hosts/public_host_name&page_size=1&minimal_response=true',
  2181. 'mock': ''
  2182. },
  2183. 'hosts.by_component.all': {
  2184. 'real': '/clusters/{clusterName}/hosts?host_components/HostRoles/component_name.in({componentNames})&fields=host_components,Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem,Hosts/ip,Hosts/os_type,Hosts/os_arch,Hosts/public_host_name&minimal_response=true',
  2185. 'mock': ''
  2186. },
  2187. 'hosts.config_groups': {
  2188. 'real': '/clusters/{clusterName}/hosts?fields=Hosts/cpu_count,Hosts/disk_info,Hosts/total_mem,Hosts/ip,Hosts/os_type,Hosts/os_arch,Hosts/public_host_name,host_components&minimal_response=true',
  2189. 'mock': ''
  2190. },
  2191. 'hosts.host_components.pre_load': {
  2192. real: '',
  2193. mock: '/data/hosts/HDP2/hosts.json',
  2194. format: function (data) {
  2195. return {
  2196. url: data.url
  2197. }
  2198. }
  2199. },
  2200. 'hosts.bulk.operations': {
  2201. real: '/clusters/{clusterName}/hosts?fields=Hosts/host_name,Hosts/maintenance_state,' +
  2202. 'host_components/HostRoles/state,host_components/HostRoles/maintenance_state,' +
  2203. 'Hosts/total_mem,stack_versions/HostStackVersions,stack_versions/repository_versions/RepositoryVersions/repository_version,' +
  2204. 'stack_versions/repository_versions/RepositoryVersions/id,' +
  2205. 'host_components/HostRoles/stale_configs&minimal_response=true',
  2206. mock: '',
  2207. format: function (data) {
  2208. return {
  2209. headers: {
  2210. 'X-Http-Method-Override': 'GET'
  2211. },
  2212. type: 'POST',
  2213. data: JSON.stringify({
  2214. "RequestInfo": {"query": data.parameters}
  2215. })
  2216. }
  2217. }
  2218. },
  2219. 'service.serviceConfigVersions.get': {
  2220. real: '/clusters/{clusterName}/configurations/service_config_versions?service_name={serviceName}&fields=service_config_version,user,hosts,group_id,group_name,is_current,createtime,service_name,service_config_version_note&minimal_response=true',
  2221. mock: '/data/configurations/service_versions.json'
  2222. },
  2223. 'service.serviceConfigVersions.get.current': {
  2224. real: '/clusters/{clusterName}?fields=Clusters/desired_service_config_versions&minimal_response=true',
  2225. mock: ''
  2226. },
  2227. 'service.serviceConfigVersions.get.total': {
  2228. real: '/clusters/{clusterName}/configurations/service_config_versions?page_size=1&minimal_response=true',
  2229. mock: '/data/configurations/service_versions_total.json'
  2230. },
  2231. 'service.serviceConfigVersion.get': {
  2232. real: '/clusters/{clusterName}/configurations/service_config_versions?service_name={serviceName}&service_config_version={serviceConfigVersion}',
  2233. mock: '/data/configurations/service_version.json'
  2234. },
  2235. 'service.serviceConfigVersions.get.multiple': {
  2236. real: '/clusters/{clusterName}/configurations/service_config_versions?service_name={serviceName}&service_config_version.in({serviceConfigVersions}){additionalParams}',
  2237. mock: '/data/configurations/service_version.json',
  2238. format: function (data) {
  2239. return {
  2240. serviceConfigVersions: data.serviceConfigVersions.join(','),
  2241. additionalParams: data.additionalParams || ''
  2242. }
  2243. }
  2244. },
  2245. 'service.serviceConfigVersion.revert': {
  2246. 'real': '/clusters/{clusterName}',
  2247. 'mock': '',
  2248. 'type': 'PUT',
  2249. 'format': function (data) {
  2250. return {
  2251. data: JSON.stringify(data.data)
  2252. }
  2253. }
  2254. },
  2255. 'service.mysql.clean': {
  2256. 'real': '/clusters/{clusterName}/requests',
  2257. 'mock': '',
  2258. 'format': function (data) {
  2259. return {
  2260. type: 'POST',
  2261. data: JSON.stringify({
  2262. "RequestInfo": {
  2263. "command" : "CLEAN", "context" : "Clean MYSQL Server"
  2264. },
  2265. "Requests/resource_filters": [{
  2266. "service_name" : "HIVE",
  2267. "component_name" : "MYSQL_SERVER",
  2268. "hosts": data.host
  2269. }]
  2270. })
  2271. }
  2272. }
  2273. },
  2274. 'service.mysql.configure': {
  2275. 'real': '/clusters/{clusterName}/requests',
  2276. 'mock': '',
  2277. 'format': function (data) {
  2278. return {
  2279. type: 'POST',
  2280. data: JSON.stringify({
  2281. "RequestInfo": {
  2282. "command" : "CONFIGURE", "context" : "Configure MYSQL Server"
  2283. },
  2284. "Requests/resource_filters": [{
  2285. "service_name" : "HIVE",
  2286. "component_name" : "MYSQL_SERVER",
  2287. "hosts": data.host
  2288. }]
  2289. })
  2290. }
  2291. }
  2292. },
  2293. 'service.mysql.testHiveConnection': {
  2294. 'real': '/requests',
  2295. 'mock': '',
  2296. 'format': function (data) {
  2297. return {
  2298. type: 'POST',
  2299. data: JSON.stringify({
  2300. "RequestInfo": {
  2301. "context": "Check host",
  2302. "action": "check_host",
  2303. "parameters":{
  2304. "db_name": data.db_name,
  2305. "user_name": data.db_user,
  2306. "user_passwd": data.db_pass,
  2307. "db_connection_url": data.db_connection_url,
  2308. "jdk_location": data.jdk_location,
  2309. "threshold":"60",
  2310. "ambari_server_host": "c6403.ambari.apache.org",
  2311. "check_execute_list":"db_connection_check",
  2312. "java_home": data.java_home,
  2313. "jdk_name": data.jdk_name
  2314. }
  2315. },
  2316. "Requests/resource_filters": [{"hosts": data.hosts}]})
  2317. }
  2318. }
  2319. },
  2320. 'widgets.layout.stackDefined.get': {
  2321. real: '{stackVersionURL}/services/{serviceName}/artifacts/widget_descriptor',
  2322. mock: '/data/widget_layouts/HBASE/stack_layout.json'
  2323. },
  2324. 'widgets.layout.userDefined.get': {
  2325. real: '/users/{loginName}/widget_layouts?section_name={sectionName}',
  2326. mock: '/data/widget_layouts/HBASE/empty_user_layout.json'
  2327. },
  2328. 'widgets.layouts.get': {
  2329. real: '/users?widget_layouts/section_name={sectionName}&widget_layouts/scope=CLUSTER',
  2330. mock: '/data/widget_layouts/HBASE/layouts.json'
  2331. },
  2332. 'widgets.serviceComponent.metrics.get': {
  2333. real: '/clusters/{clusterName}/services/{serviceName}/components/{componentName}?fields={widgetIds}',
  2334. mock: '/data/metrics/{serviceName}/Append_num_ops_&_Delete_num_ops.json'
  2335. },
  2336. 'widgets.hostComponent.metrics.get': {
  2337. real: '/clusters/{clusterName}/services/{serviceName}/components/{componentName}?{hostComponentCriteria}&fields={widgetIds}',
  2338. mock: '/data/metrics/{serviceName}/Append_num_ops.json'
  2339. }
  2340. };
  2341. /**
  2342. * Replace data-placeholders to its values
  2343. *
  2344. * @param {String} url
  2345. * @param {Object} data
  2346. * @return {String}
  2347. */
  2348. var formatUrl = function (url, data) {
  2349. if (!url) return null;
  2350. var keys = url.match(/\{\w+\}/g);
  2351. keys = (keys === null) ? [] : keys;
  2352. if (keys) {
  2353. keys.forEach(function (key) {
  2354. var raw_key = key.substr(1, key.length - 2);
  2355. var replace;
  2356. if (!data || !data[raw_key]) {
  2357. replace = '';
  2358. }
  2359. else {
  2360. replace = data[raw_key];
  2361. }
  2362. url = url.replace(new RegExp(key, 'g'), replace);
  2363. });
  2364. }
  2365. return url;
  2366. };
  2367. /**
  2368. * this = object from config
  2369. * @return {Object}
  2370. */
  2371. var formatRequest = function (data) {
  2372. var opt = {
  2373. type: this.type || 'GET',
  2374. timeout: App.timeout,
  2375. dataType: 'json',
  2376. statusCode: require('data/statusCodes')
  2377. };
  2378. if (App.get('testMode')) {
  2379. opt.url = formatUrl(this.mock ? this.mock : '', data);
  2380. opt.type = 'GET';
  2381. }
  2382. else {
  2383. var prefix = this.apiPrefix != null ? this.apiPrefix : App.apiPrefix;
  2384. opt.url = prefix + formatUrl(this.real, data);
  2385. }
  2386. if (this.format) {
  2387. jQuery.extend(opt, this.format(data, opt));
  2388. }
  2389. return opt;
  2390. };
  2391. /**
  2392. * Wrapper for all ajax requests
  2393. *
  2394. * @type {Object}
  2395. */
  2396. var ajax = Em.Object.extend({
  2397. /**
  2398. * Send ajax request
  2399. *
  2400. * @param {Object} config
  2401. * @return {$.ajax} jquery ajax object
  2402. *
  2403. * config fields:
  2404. * name - url-key in the urls-object *required*
  2405. * sender - object that send request (need for proper callback initialization) *required*
  2406. * data - object with data for url-format
  2407. * beforeSend - method-name for ajax beforeSend response callback
  2408. * success - method-name for ajax success response callback
  2409. * error - method-name for ajax error response callback
  2410. * callback - callback from <code>App.updater.run</code> library
  2411. */
  2412. send: function (config) {
  2413. if (!config.sender) {
  2414. console.warn('Ajax sender should be defined!');
  2415. return null;
  2416. }
  2417. // default parameters
  2418. var params = {
  2419. clusterName: (App.get('clusterName') || App.clusterStatus.get('clusterName'))
  2420. };
  2421. // extend default parameters with provided
  2422. if (config.data) {
  2423. jQuery.extend(params, config.data);
  2424. }
  2425. var opt = {};
  2426. if (!urls[config.name]) {
  2427. console.warn('Invalid name provided!');
  2428. return null;
  2429. }
  2430. opt = formatRequest.call(urls[config.name], params);
  2431. opt.context = this;
  2432. // object sender should be provided for processing beforeSend, success and error responses
  2433. opt.beforeSend = function (xhr) {
  2434. if (config.beforeSend) {
  2435. config.sender[config.beforeSend](opt, xhr, params);
  2436. }
  2437. };
  2438. opt.success = function (data, textStatus, request) {
  2439. console.log("TRACE: The url is: " + opt.url);
  2440. if (config.success) {
  2441. config.sender[config.success](data, opt, params, request);
  2442. }
  2443. };
  2444. opt.error = function (request, ajaxOptions, error) {
  2445. var KDCErrorMsg = this.getKDCErrorMgs(request);
  2446. if (!Em.isNone(KDCErrorMsg)) {
  2447. /**
  2448. * run this handler before show KDC error popup
  2449. */
  2450. if (config.kdcFailHandler) {
  2451. config.sender[config.kdcFailHandler](request, ajaxOptions, error, opt, params);
  2452. }
  2453. /**
  2454. * run this handler when click cancle on KDC error popup
  2455. */
  2456. if (config.kdcCancelHandler) {
  2457. opt.kdcCancelHandler = function() {
  2458. config.sender[config.kdcCancelHandler]();
  2459. };
  2460. }
  2461. this.defaultErrorKDCHandler(opt, KDCErrorMsg);
  2462. } else if (config.error) {
  2463. config.sender[config.error](request, ajaxOptions, error, opt, params);
  2464. } else {
  2465. this.defaultErrorHandler(request, opt.url, opt.type);
  2466. }
  2467. };
  2468. opt.complete = function () {
  2469. if (config.callback) {
  2470. config.callback();
  2471. }
  2472. };
  2473. if ($.mocho) {
  2474. opt.url = 'http://' + $.hostName + opt.url;
  2475. }
  2476. return $.ajax(opt);
  2477. },
  2478. // A single instance of App.ModalPopup view
  2479. modalPopup: null,
  2480. /**
  2481. * defaultErrorHandler function is referred from App.ajax.send function and App.HttpClient.defaultErrorHandler function
  2482. * @jqXHR {jqXHR Object}
  2483. * @url {string}
  2484. * @method {String} Http method
  2485. * @showStatus {number} HTTP response code which should be shown. Default is 500.
  2486. */
  2487. defaultErrorHandler: function (jqXHR, url, method, showStatus) {
  2488. method = method || 'GET';
  2489. var self = this;
  2490. try {
  2491. var json = $.parseJSON(jqXHR.responseText);
  2492. var message = json.message;
  2493. } catch (err) {
  2494. }
  2495. if (!showStatus) {
  2496. showStatus = 500;
  2497. }
  2498. if (jqXHR.status === showStatus && !this.get('modalPopup')) {
  2499. this.set('modalPopup', App.ModalPopup.show({
  2500. header: Em.I18n.t('common.error'),
  2501. secondary: false,
  2502. onPrimary: function () {
  2503. this.hide();
  2504. self.set('modalPopup', null);
  2505. },
  2506. bodyClass: App.AjaxDefaultErrorPopupBodyView.extend({
  2507. type: method,
  2508. url: url,
  2509. status: jqXHR.status,
  2510. message: message
  2511. })
  2512. }));
  2513. }
  2514. },
  2515. /**
  2516. * defines if it's admin session expiration error
  2517. * and if so returns short error message
  2518. * @param jqXHR
  2519. * @returns {string|null}
  2520. */
  2521. getKDCErrorMgs: function(jqXHR) {
  2522. try {
  2523. var message = $.parseJSON(jqXHR.responseText).message;
  2524. } catch (err) {}
  2525. if (jqXHR.status === 400 && message) {
  2526. return App.format.kdcErrorMsg(message, true);
  2527. }
  2528. },
  2529. /**
  2530. * default handler for admin session expiration error
  2531. * @param {object} opt
  2532. * @param {string} msg
  2533. * @returns {*}
  2534. */
  2535. defaultErrorKDCHandler: function(opt, msg) {
  2536. return App.showInvalidKDCPopup(opt, msg);
  2537. }
  2538. });
  2539. /**
  2540. * Add few access-methods for test purposes
  2541. */
  2542. if ($.mocho) {
  2543. ajax.reopen({
  2544. /**
  2545. * Don't use it anywhere except tests!
  2546. * @returns {Array}
  2547. */
  2548. fakeGetUrlNames: function () {
  2549. return Em.keys(urls);
  2550. },
  2551. /**
  2552. * Don't use it anywhere except tests!
  2553. * @param name
  2554. * @returns {*}
  2555. */
  2556. fakeGetUrl: function (name) {
  2557. return urls[name];
  2558. },
  2559. /**
  2560. * Don't use it anywhere except tests!
  2561. * @param url
  2562. * @param data
  2563. * @returns {String}
  2564. */
  2565. fakeFormatUrl: function (url, data) {
  2566. return formatUrl(url, data);
  2567. },
  2568. /**
  2569. * Don't use it anywhere except tests!
  2570. * @param urlObj
  2571. * @param data
  2572. * @returns {Object}
  2573. */
  2574. fakeFormatRequest: function (urlObj, data) {
  2575. return formatRequest.call(urlObj, data);
  2576. }
  2577. });
  2578. }
  2579. App.ajax = ajax.create({});