Skip to content

Commit 4ea9ac8

Browse files
authored
Map update (#74)
* map update * test fix and text/markdown priority * fix default_map_build
1 parent 04bd40c commit 4ea9ac8

File tree

3 files changed

+182
-25
lines changed

3 files changed

+182
-25
lines changed

resources/default_map_build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,4 @@
109109
-
110110
-
111111
- [setExtensionDefaultType, [sub, text/vnd.dvb.subtitle]]
112+
- [setExtensionDefaultType, [md, text/markdown]]

src/Map/DefaultMap.php

+171-15
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,18 @@ public function getFileName(): string
383383
0 => 'gz',
384384
),
385385
),
386+
'application/hta' =>
387+
array (
388+
'desc' =>
389+
array (
390+
0 => 'Windows HTML desktop application',
391+
1 => 'HTML: HyperText Markup Language',
392+
),
393+
'e' =>
394+
array (
395+
0 => 'hta',
396+
),
397+
),
386398
'application/hyperstudio' =>
387399
array (
388400
'e' =>
@@ -649,6 +661,28 @@ public function getFileName(): string
649661
0 => 'mets',
650662
),
651663
),
664+
'application/microsoftpatch' =>
665+
array (
666+
'desc' =>
667+
array (
668+
0 => 'Windows Installer patch',
669+
),
670+
'e' =>
671+
array (
672+
0 => 'msp',
673+
),
674+
),
675+
'application/microsoftupdate' =>
676+
array (
677+
'desc' =>
678+
array (
679+
0 => 'Windows Update package',
680+
),
681+
'e' =>
682+
array (
683+
0 => 'msu',
684+
),
685+
),
652686
'application/mods+xml' =>
653687
array (
654688
'e' =>
@@ -6258,7 +6292,8 @@ public function getFileName(): string
62586292
array (
62596293
0 => 'gen',
62606294
1 => 'smd',
6261-
2 => 'sgd',
6295+
2 => 'md',
6296+
3 => 'sgd',
62626297
),
62636298
),
62646299
'application/x-gerber-job' =>
@@ -7775,6 +7810,7 @@ public function getFileName(): string
77757810
0 => 'wb1',
77767811
1 => 'wb2',
77777812
2 => 'wb3',
7813+
3 => 'qpw',
77787814
),
77797815
),
77807816
'application/x-quicktime-media-link' =>
@@ -7864,6 +7900,29 @@ public function getFileName(): string
78647900
0 => 'rb',
78657901
),
78667902
),
7903+
'application/x-rzip' =>
7904+
array (
7905+
'desc' =>
7906+
array (
7907+
0 => 'Rzip archive',
7908+
),
7909+
'e' =>
7910+
array (
7911+
0 => 'rz',
7912+
),
7913+
),
7914+
'application/x-rzip-compressed-tar' =>
7915+
array (
7916+
'desc' =>
7917+
array (
7918+
0 => 'Tar archive (rzip-compressed)',
7919+
),
7920+
'e' =>
7921+
array (
7922+
0 => 'tar.rz',
7923+
1 => 'trz',
7924+
),
7925+
),
78677926
'application/x-sami' =>
78687927
array (
78697928
'desc' =>
@@ -10165,6 +10224,17 @@ public function getFileName(): string
1016510224
2 => 'hif',
1016610225
),
1016710226
),
10227+
'image/hej2k' =>
10228+
array (
10229+
'desc' =>
10230+
array (
10231+
0 => 'JPEG 2000 image encapsulated in HEIF',
10232+
),
10233+
'e' =>
10234+
array (
10235+
0 => 'hej2',
10236+
),
10237+
),
1016810238
'image/ief' =>
1016910239
array (
1017010240
'desc' =>
@@ -11444,6 +11514,10 @@ public function getFileName(): string
1144411514
),
1144511515
'model/obj' =>
1144611516
array (
11517+
'a' =>
11518+
array (
11519+
0 => 'application/prs.wavefront-obj',
11520+
),
1144711521
'desc' =>
1144811522
array (
1144911523
0 => 'OBJ 3D model',
@@ -11453,6 +11527,18 @@ public function getFileName(): string
1145311527
0 => 'obj',
1145411528
),
1145511529
),
11530+
'model/step' =>
11531+
array (
11532+
'desc' =>
11533+
array (
11534+
0 => 'STEP 3D model',
11535+
),
11536+
'e' =>
11537+
array (
11538+
0 => 'step',
11539+
1 => 'stp',
11540+
),
11541+
),
1145611542
'model/stl' =>
1145711543
array (
1145811544
'a' =>
@@ -11498,13 +11584,6 @@ public function getFileName(): string
1149811584
0 => 'gtw',
1149911585
),
1150011586
),
11501-
'model/vnd.mts' =>
11502-
array (
11503-
'e' =>
11504-
array (
11505-
0 => 'mts',
11506-
),
11507-
),
1150811587
'model/vnd.vtu' =>
1150911588
array (
1151011589
'e' =>
@@ -13495,9 +13574,9 @@ public function getFileName(): string
1349513574
),
1349613575
'e' =>
1349713576
array (
13498-
0 => 'm2t',
13499-
1 => 'm2ts',
13500-
2 => 'ts',
13577+
0 => 'ts',
13578+
1 => 'm2t',
13579+
2 => 'm2ts',
1350113580
3 => 'mts',
1350213581
4 => 'cpi',
1350313582
5 => 'clpi',
@@ -17757,6 +17836,13 @@ public function getFileName(): string
1775717836
0 => 'image/heif',
1775817837
),
1775917838
),
17839+
'hej2' =>
17840+
array (
17841+
't' =>
17842+
array (
17843+
0 => 'image/hej2k',
17844+
),
17845+
),
1776017846
'hfe' =>
1776117847
array (
1776217848
't' =>
@@ -17834,6 +17920,13 @@ public function getFileName(): string
1783417920
0 => 'text/x-haskell',
1783517921
),
1783617922
),
17923+
'hta' =>
17924+
array (
17925+
't' =>
17926+
array (
17927+
0 => 'application/hta',
17928+
),
17929+
),
1783717930
'htc' =>
1783817931
array (
1783917932
't' =>
@@ -19366,6 +19459,7 @@ public function getFileName(): string
1936619459
't' =>
1936719460
array (
1936819461
0 => 'text/markdown',
19462+
1 => 'application/x-genesis-rom',
1936919463
),
1937019464
),
1937119465
'mdb' =>
@@ -20041,13 +20135,27 @@ public function getFileName(): string
2004120135
0 => 'image/x-msod',
2004220136
),
2004320137
),
20138+
'msp' =>
20139+
array (
20140+
't' =>
20141+
array (
20142+
0 => 'application/microsoftpatch',
20143+
),
20144+
),
2004420145
'msty' =>
2004520146
array (
2004620147
't' =>
2004720148
array (
2004820149
0 => 'application/vnd.muvee.style',
2004920150
),
2005020151
),
20152+
'msu' =>
20153+
array (
20154+
't' =>
20155+
array (
20156+
0 => 'application/microsoftupdate',
20157+
),
20158+
),
2005120159
'msx' =>
2005220160
array (
2005320161
't' =>
@@ -20073,8 +20181,7 @@ public function getFileName(): string
2007320181
array (
2007420182
't' =>
2007520183
array (
20076-
0 => 'model/vnd.mts',
20077-
1 => 'video/mp2t',
20184+
0 => 'video/mp2t',
2007820185
),
2007920186
),
2008020187
'mup' =>
@@ -21821,6 +21928,13 @@ public function getFileName(): string
2182121928
0 => 'application/vnd.publishare-delta-tree',
2182221929
),
2182321930
),
21931+
'qpw' =>
21932+
array (
21933+
't' =>
21934+
array (
21935+
0 => 'application/x-quattropro',
21936+
),
21937+
),
2182421938
'qs' =>
2182521939
array (
2182621940
't' =>
@@ -22307,6 +22421,13 @@ public function getFileName(): string
2230722421
0 => 'image/x-panasonic-rw2',
2230822422
),
2230922423
),
22424+
'rz' =>
22425+
array (
22426+
't' =>
22427+
array (
22428+
0 => 'application/x-rzip',
22429+
),
22430+
),
2231022431
's' =>
2231122432
array (
2231222433
't' =>
@@ -23208,6 +23329,13 @@ public function getFileName(): string
2320823329
0 => 'application/vnd.sun.xml.draw.template',
2320923330
),
2321023331
),
23332+
'step' =>
23333+
array (
23334+
't' =>
23335+
array (
23336+
0 => 'model/step',
23337+
),
23338+
),
2321123339
'stf' =>
2321223340
array (
2321323341
't' =>
@@ -23244,6 +23372,13 @@ public function getFileName(): string
2324423372
0 => 'audio/x-stm',
2324523373
),
2324623374
),
23375+
'stp' =>
23376+
array (
23377+
't' =>
23378+
array (
23379+
0 => 'model/step',
23380+
),
23381+
),
2324723382
'str' =>
2324823383
array (
2324923384
't' =>
@@ -23565,6 +23700,13 @@ public function getFileName(): string
2356523700
0 => 'application/x-tzo',
2356623701
),
2356723702
),
23703+
'tar.rz' =>
23704+
array (
23705+
't' =>
23706+
array (
23707+
0 => 'application/x-rzip-compressed-tar',
23708+
),
23709+
),
2356823710
'tar.xz' =>
2356923711
array (
2357023712
't' =>
@@ -23890,12 +24032,19 @@ public function getFileName(): string
2389024032
0 => 'application/x-msterminal',
2389124033
),
2389224034
),
24035+
'trz' =>
24036+
array (
24037+
't' =>
24038+
array (
24039+
0 => 'application/x-rzip-compressed-tar',
24040+
),
24041+
),
2389324042
'ts' =>
2389424043
array (
2389524044
't' =>
2389624045
array (
23897-
0 => 'text/vnd.trolltech.linguist',
23898-
1 => 'video/mp2t',
24046+
0 => 'video/mp2t',
24047+
1 => 'text/vnd.trolltech.linguist',
2389924048
),
2390024049
),
2390124050
'tscn' =>
@@ -26105,6 +26254,13 @@ public function getFileName(): string
2610526254
0 => 'application/vnd.ms-powerpoint',
2610626255
),
2610726256
),
26257+
'application/prs.wavefront-obj' =>
26258+
array (
26259+
't' =>
26260+
array (
26261+
0 => 'model/obj',
26262+
),
26263+
),
2610826264
'application/smil' =>
2610926265
array (
2611026266
't' =>

tests/src/MapHandlerTest.php

+10-10
Original file line numberDiff line numberDiff line change
@@ -154,21 +154,21 @@ public function testGetAliasExtensionsAfterTypeWithAliasRemoval(): void
154154
public function testGetExtensionTypesAfterTypeWithAliasRemoval(): void
155155
{
156156
$this->expectException(MappingException::class);
157-
$this->expectExceptionMessage("No MIME type mapped to extension md");
158-
$this->assertTrue($this->map->hasAlias('text/x-markdown'));
159-
$this->assertTrue($this->map->removeType('text/markdown'));
160-
$this->assertFalse($this->map->hasAlias('text/x-markdown'));
161-
$types = (new Extension('MD'))->getTypes();
157+
$this->expectExceptionMessage("No MIME type mapped to extension lyx");
158+
$this->assertTrue($this->map->hasAlias('text/x-lyx'));
159+
$this->assertTrue($this->map->removeType('application/x-lyx'));
160+
$this->assertFalse($this->map->hasAlias('text/x-lyx'));
161+
$types = (new Extension('LYX'))->getTypes();
162162
}
163163

164164
public function testGetExtensionDefaultTypeAfterTypeWithAliasRemoval(): void
165165
{
166166
$this->expectException(MappingException::class);
167-
$this->expectExceptionMessage("No MIME type mapped to extension md");
168-
$this->assertTrue($this->map->hasAlias('text/x-markdown'));
169-
$this->assertTrue($this->map->removeType('text/markdown'));
170-
$this->assertFalse($this->map->hasAlias('text/x-markdown'));
171-
$defaultType = (new Extension('md'))->getDefaultType();
167+
$this->expectExceptionMessage("No MIME type mapped to extension lyx");
168+
$this->assertTrue($this->map->hasAlias('text/x-lyx'));
169+
$this->assertTrue($this->map->removeType('application/x-lyx'));
170+
$this->assertFalse($this->map->hasAlias('text/x-lyx'));
171+
$defaultType = (new Extension('lyx'))->getDefaultType();
172172
}
173173

174174
public function testHasType(): void

0 commit comments

Comments
 (0)