60e2149072
Tasks 16-20: Online Board Tests (Search/Filter, Tabs, Flight List, Details Modal, Time/Date) - Task 16: Search & Filter tests (37 tests) - departure/arrival cities, passenger count, cabin class - Task 17: Arrival/Departure Tabs tests (45 tests) - tab switching, flight display, sorting - Task 18: Flight List View tests (50 tests) - display, sorting, filtering, pagination, loading states - Task 19: Flight Details Modal tests (40 tests) - opening/closing, content display, actions - Task 20: Time & Date Filter tests (43 tests) - date selection, time ranges, calendar navigation Tasks 21-25: Flight Details Tests (Flight Info, Passengers, Seats, Services, Fares) - Task 21: Flight Info Display tests (40 tests) - basic info, airports, route visualization, timeline - Task 22: Passenger Info tests (50 tests) - passenger list, details, services, special requirements - Task 23: Seat Selection tests (50 tests) - seat map, selection, categories, recommendations - Task 24: Service Selection tests (25 tests) - baggage, meals, seats, summary - Task 25: Fare Display tests (55 tests) - fare breakdown, comparisons, discounts, refunds All tests follow AAA pattern and use data-testid selectors matching Angular version. Total: 245 tests across 10 feature suites.
104 lines
3.3 KiB
Markdown
104 lines
3.3 KiB
Markdown
# xmlbuilder-js
|
|
|
|
An XML builder for [node.js](https://nodejs.org/) similar to
|
|
[java-xmlbuilder](https://github.com/jmurty/java-xmlbuilder).
|
|
|
|
[](http://opensource.org/licenses/MIT)
|
|
[](https://npmjs.com/package/xmlbuilder)
|
|
[](https://npmjs.com/package/xmlbuilder)
|
|
|
|
[](http://travis-ci.org/oozcitak/xmlbuilder-js)
|
|
[](https://ci.appveyor.com/project/oozcitak/xmlbuilder-js)
|
|
[](https://david-dm.org/oozcitak/xmlbuilder-js)
|
|
[](https://coveralls.io/github/oozcitak/xmlbuilder-js)
|
|
|
|
### Announcing `xmlbuilder2`:
|
|
|
|
The new release of `xmlbuilder` is available at [`xmlbuilder2`](https://github.com/oozcitak/xmlbuilder2)! `xmlbuilder2` has been redesigned from the ground up to be fully conforming to the [modern DOM specification](https://dom.spec.whatwg.org). It supports XML namespaces, provides built-in converters for multiple formats, collection functions, and more. Please see [upgrading from xmlbuilder](https://oozcitak.github.io/xmlbuilder2/upgrading-from-xmlbuilder.html) in the wiki.
|
|
|
|
New development will be focused towards `xmlbuilder2`; `xmlbuilder` will only receive critical bug fixes.
|
|
|
|
### Installation:
|
|
|
|
``` sh
|
|
npm install xmlbuilder
|
|
```
|
|
|
|
### Usage:
|
|
|
|
``` js
|
|
var builder = require('xmlbuilder');
|
|
|
|
var xml = builder.create('root')
|
|
.ele('xmlbuilder')
|
|
.ele('repo', {'type': 'git'}, 'git://github.com/oozcitak/xmlbuilder-js.git')
|
|
.end({ pretty: true});
|
|
|
|
console.log(xml);
|
|
```
|
|
|
|
will result in:
|
|
|
|
``` xml
|
|
<?xml version="1.0"?>
|
|
<root>
|
|
<xmlbuilder>
|
|
<repo type="git">git://github.com/oozcitak/xmlbuilder-js.git</repo>
|
|
</xmlbuilder>
|
|
</root>
|
|
```
|
|
|
|
It is also possible to convert objects into nodes:
|
|
|
|
``` js
|
|
var builder = require('xmlbuilder');
|
|
|
|
var obj = {
|
|
root: {
|
|
xmlbuilder: {
|
|
repo: {
|
|
'@type': 'git', // attributes start with @
|
|
'#text': 'git://github.com/oozcitak/xmlbuilder-js.git' // text node
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
var xml = builder.create(obj).end({ pretty: true});
|
|
console.log(xml);
|
|
```
|
|
|
|
If you need to do some processing:
|
|
|
|
``` js
|
|
var builder = require('xmlbuilder');
|
|
|
|
var root = builder.create('squares');
|
|
root.com('f(x) = x^2');
|
|
for(var i = 1; i <= 5; i++)
|
|
{
|
|
var item = root.ele('data');
|
|
item.att('x', i);
|
|
item.att('y', i * i);
|
|
}
|
|
|
|
var xml = root.end({ pretty: true});
|
|
console.log(xml);
|
|
```
|
|
|
|
This will result in:
|
|
|
|
``` xml
|
|
<?xml version="1.0"?>
|
|
<squares>
|
|
<!-- f(x) = x^2 -->
|
|
<data x="1" y="1"/>
|
|
<data x="2" y="4"/>
|
|
<data x="3" y="9"/>
|
|
<data x="4" y="16"/>
|
|
<data x="5" y="25"/>
|
|
</squares>
|
|
```
|
|
|
|
See the [wiki](https://github.com/oozcitak/xmlbuilder-js/wiki) for details and [examples](https://github.com/oozcitak/xmlbuilder-js/wiki/Examples) for more complex examples.
|